讲解Python如何把繁体转为简体

简介: Python把繁体字转为简体的方法

这里需要用到两个文件,从github下载: https://github.com/csdz/nstools/tree/master/zhtools
下载源文件:zh_wiki.py 和 langconv.py
转换函数:

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

a = tradition2simple2(u"無所謂")
print(a) 

# 结果
无所谓
相关文章
|
3月前
|
Python
6-18|Python画字母H
6-18|Python画字母H
|
Python
Python大小写转换
Python大小写转换
90 0
|
7月前
|
存储 Python
Python中文编码
Python中文编码
|
6月前
|
自然语言处理 搜索推荐 索引
python 结巴分词详细讲解
python 结巴分词详细讲解
53 0
|
7月前
|
编解码 IDE 文件存储
Python 中文编码
Python 中文编码
|
7月前
|
Python
Python基础【大小写转换】
Python基础【大小写转换】
|
Python
Python到底能不能用中文变量名?
变量命名是编程中非常基础的一个操作。所有的编程入门书籍都会提及,所有编程学习者也都了解过。
python乱码,python编码,python中文编码转换
python乱码,python编码,python中文编码转换
|
Python
一日一技:在Python中实现阿拉伯数字加上中文数字
一日一技:在Python中实现阿拉伯数字加上中文数字
126 0
下一篇
DataWorks