Python实现繁?w转为简体的方法示例
本文实例讲述了Python实现繁?w转为简体的方法。分享给大家供大家参考,具体如下:
这里需要用到两个文件,可以点击此处本站下载源文件:zh_wiki.py 和 langconv.py
或者从github下载: https://github.com/csdz/nstools/tree/master/zhtools
转换函数:
from langconv import * def tradition2simple(line): # 将繁体转换成简体 line = Converter('zh-hans').convert(line.decode('utf-8')) line = line.encode('utf-8') return line def tradition2simple2(line): # 将繁体转换成简体 line = Converter('zh-hans').convert(line) line = line.encode('utf-8') return line
测试代码
print tradition2simple2(u"?o所?^")
#?出
无所谓
注:这里需要安装psycopg模块,可点击https://www.lfd.uci.edu/~gohlke/pythonlibs/选择对应的版本进行安装。
PS:这里再为大家推荐几款功能相似的在线工具供大家参考:
中文繁体字简体字转换(繁简转换)工具:
http://tools.jb51.net/transcoding/convertzh
在线自动排版与转换工具:
http://tools.jb51.net/aideddesign/txt_beaut
更多关于Python相关内容感兴趣的读者可查看本站专题:《Python编码操作技巧总结》、《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》
希望本文所述对大家Python程序设计有所帮助。
栏 目:Python代码
下一篇:浅谈flask截获所有访问及before/after_request修饰器
本文标题:Python实现繁?w转为简体的方法示例
本文地址:http://www.codeinn.net/misctech/198134.html