首页 > 编程 > Python > 正文

Python实现繁体中文与简体中文相互转换的方法示例

2020-01-04 13:46:52
字体:
来源:转载
供稿:网友

本文实例讲述了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 sentenceif __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 sentenceif __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 sentencedef Simplified2Traditional(sentence):  '''  将sentence中的简体字转为繁体字  :param sentence: 待转换的句子  :return: 将句子中简体字转换为繁体字之后的句子  '''  sentence = Converter('zh-hant').convert(sentence)  return sentenceif __name__=="__main__":  traditional_sentence = '憂郁的臺灣烏龜'  simplified_sentence = Traditional2Simplified(traditional_sentence)  print(simplified_sentence)

参考资料:

skydark:https://github.com/skydark/nstools/tree/master/zhtools

希望本文所述对大家Python程序设计有所帮助。


注:相关教程知识阅读请移步到python教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表