>> # show tone marks>>> p.get_pinyin(u"上海", show_tone_marks=True)'shàng-hǎi'>>_python 脚本处理 txt文本,将pinyin的名字替换成汉子">
当前位置:   article > 正文

python拼音转换汉字_python 脚本处理 txt文本,将pinyin的名字替换成汉子

python 脚本处理 txt文本,将pinyin的名字替换成汉子

>>> from xpinyin import Pinyin
>>> p = Pinyin()
>>> # default splitter is `-`
>>> p.get_pinyin(u"上海")
'shang-hai'
>>> # show tone marks
>>> p.get_pinyin(u"上海", show_tone_marks=True)
'shàng-hǎi'
>>> # remove splitter
>>> p.get_pinyin(u"上海", '')
'shanghai'
>>> # set splitter as whitespace
>>> p.get_pinyin(u"上海", ' ')
'shang hai'
>>> p.get_initial(u"上")
'S'
>>> p.get_initials(u"上海")
'S-H'
>>> p.get_initials(u"上海", u'')
'SH'
>>> p.get_initials(u"上海", u' ')
'S H'

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/259135
推荐阅读
相关标签
  

闽ICP备14008679号