微博实现简繁体转换
Posted xqnq2007
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微博实现简繁体转换相关的知识,希望对你有一定的参考价值。
http://blog.csdn.net/wds2006sdo/article/details/53583367
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) ‘‘‘ 输出结果: 忧郁的台湾乌龟 ‘‘‘
以上是关于微博实现简繁体转换的主要内容,如果未能解决你的问题,请参考以下文章
[内码]您是如何实现简体中文到繁体中文快速转换的? - PHP进阶讨论