脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - Python3实现汉语转换为汉语拼音

Python3实现汉语转换为汉语拼音

2021-08-03 00:39r_coder Python

这篇文章主要为大家详细介绍了Python3实现汉语转换为汉语拼音,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了Python3实现汉语转换为汉语拼音的具体代码,供大家参考,具体内容如下

工具: Python3.6.2,pycharm

1.使用了 第三方模块 pypinyin(点击File->setting...->Project:name(自己的项目名称)->Project Interpreter)

Python3实现汉语转换为汉语拼音

点击+ ,输入pypinyin,点击 Install Pageage

Python3实现汉语转换为汉语拼音

2. 上代码


  1. import pypinyin
  2.  
  3. # 不带声调的(style=pypinyin.NORMAL)
  4. def hp(word):
  5. s = ''
  6. for i in pypinyin.pinyin(word, style=pypinyin.NORMAL):
  7. s += ''.join(i)
  8. return s
  9.  
  10. # 带声调的(默认)
  11. def hp2(word):
  12. s = ''
  13. for i in pypinyin.pinyin(word):
  14. s = s + ''.join(i) + " "
  15. return s
  16.  
  17. if __name__ == "__main__":
  18. print(hp("中国中央电视台春节联欢晚会"))
  19. print(hp2("中国中央电视台春节联欢晚会"))

输出结果:


  1. D:\Python\Python36\python.exe D:/pyWorkspace/reptile/chinesePYC.py
  2. zhongguozhongyangdianshitaichunjielianhuanwanhui
  3. zhōng guó zhōng yāng diàn shì tái chūn jié lián huān wǎn huì
  4.  
  5. Process finished with exit code 0

注:新手上路,本文章仅供参考.

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/r_coder/article/details/79419318

延伸 · 阅读

精彩推荐