首页 > Python基础教程 >
-
Python实现繁体中文与简体中文相互转换的方法示例
本文实例讲述了Python实现繁体中文与简体中文相互转换的方法。分享给大家供大家参考,具体如下:
工作中需要将繁体中文转换成简体中文
上网找了些资料,发现这个包最方便:https://github.com/skydark/nstools/tree/master/zhtools
安装方法
不需要什么安装方法,只需要把两个文件下载下来,保存到与代码同一目录下即可
https://raw.githubusercontent.com/skydark/nstools/master/zhtools/langconv.py
https://raw.githubusercontent.com/skydark/nstools/master/zhtools/zh_wiki.py
或者点击此处本站下载源文件:zh_wiki.py 和 langconv.py
繁体转简体:
from langconv import *
def Traditional2Simplified(sentence):
'''
将sentence中的繁体字转为简体字
:param sentence: 待转换的句子
:return: 将句子中繁体字转换为简体字之后的句子
'''
sentence = Converter('zh-hans').convert(sentence)
return sentence
if __name__=="__main__":
traditional_sentence = '憂郁的臺灣烏龜'
simplified_sentence = Traditional2Simplified(traditional_sentence)
print(simplified_sentence)
'''
输出结果:
忧郁的台湾乌龟
'''
简体转繁体:
from langconv import *
def Simplified2Traditional(sentence):
'''
将sentence中的简体字转为繁体字
:param sentence: 待转换的句子
:return: 将句子中简体字转换为繁体字之后的句子
'''
sentence = Converter('zh-hant').convert(sentence)
return sentence
if __name__=="__main__":
simplified_sentence = '忧郁的台湾乌龟'
traditional_sentence = Simplified2Traditional(simplified_sentence)
print(traditional_sentence)
'''
输出结果:
憂郁的臺灣烏龜
'''
完整代码:
from langconv import *
def Traditional2Simplified(sentence):
'''
将sentence中的繁体字转为简体字
:param sentence: 待转换的句子
:return: 将句子中繁体字转换为简体字之后的句子
'''
sentence = Converter('zh-hans').convert(sentence)
return sentence
def Simplified2Traditional(sentence):
'''
将sentence中的简体字转为繁体字
:param sentence: 待转换的句子
:return: 将句子中简体字转换为繁体字之后的句子
'''
sentence = Converter('zh-hant').convert(sentence)
return sentence
if __name__=="__main__":
traditional_sentence = '憂郁的臺灣烏龜'
simplified_sentence = Traditional2Simplified(traditional_sentence)
print(simplified_sentence)
参考资料:
skydark:https://github.com/skydark/nstools/tree/master/zhtools
PS:这里再为大家推荐几款功能相似的在线工具供大家参考:
中文繁体字简体字转换(繁简转换)工具:
http://tools.jb51.net/transcoding/convertzh
在线自动排版与转换工具:
http://tools.jb51.net/aideddesign/txt_beaut
在线文字/文本排版/转换工具(脚本之家加强版):
http://tools.jb51.net/aideddesign/jb51_paiban
希望本文所述对大家Python程序设计有所帮助。
原文链接:https://blog.csdn.net/wds2006sdo/article/details/53583367