【Python pypinyin】
作者:互联网
原文: http://106.13.73.98/__/130/
安装:pip install pypinyin
pypinyin
模块用于将汉字转换为拼音.
如下示例:
from pypinyin import lazy_pinyin, TONE2
s = '我就喜欢写代码'
ret = lazy_pinyin(s, style=TONE2)
print(ret)
# ['wo3', 'jiu4', 'xi3', 'hua1n', 'xie3', 'da4i', 'ma3']
# 3、4为声调,还有1、2
原文: http://106.13.73.98/__/130/
标签:__,lazy,http,Python,ret,130,pypinyin 来源: https://www.cnblogs.com/bql01/p/11339552.html