Posted in Python onDecember 18, 2018
本文实例讲述了Python实现繁?转为简体的方法。分享给大家供大家参考,具体如下:
这里需要用到两个文件,可以点击此处本站下载源文件: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/选择对应的版本进行安装。
Python实现繁?转为简体的方法示例
- Author -
Tangzongyu123声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@