sogo输入法细胞词库解析源程序dis_sogo_cell.c,将.scel文件解码输出unicode格式的文本文件,可以提取出大量的中文词语,输出拼音及其中文词语,格式如下: bei di ;北地,北堤, bei gou ;北沟,杯勾, cai feng xiao qu ;彩俸小区,彩凤小区,彩风小区, chang cheng shu dian ;长城书店, chang ge zhuang cun ;常各庄村, chang he da sha ;长和大厦,长河大厦, 使用方法(Linux下)
跳马
使用密码对本地文本文件进行编码和解码。
尼姆版
Encrypt and decrypt a file using a password.
Usage:
vault open [file]
vault close [file]
Default file:
passwords.txt
WARNING: this program may overwrite or delete file content without
a possibilty of recove
对于python2.7
字符串在Python2.7内部的表示是unicode编码,因此,在做编码转换时,通常需要以unicode作为中间编码,即先将其他编码的字符串解码成unicode,再从unicode编码成另一种编码。
先用一些编辑器(如editplus )看一下你的txt文件保存的是utf-8,还是gb2312或其他的。当你读行时可以这样
line = (file1.readline()).decode('utf-8').encode('gb2312')或
line = (file1.r