首页 > 编程语言 > 详细

Python 获取中文的首字母 和 全部拼音首字母

时间:2021-01-11 18:23:31      阅读:145      评论:0      收藏:0      [点我收藏+]

Python 获取中文的首字母 和 全部拼音首字母

 

代码如下:

import pinyin

def getStrAllAplha(str):
    return pinyin.get_initial(str, delimiter="").upper()
    
def getStrFirstAplha(str):
    str=getStrAllAplha(str)
    str=str[0:1]
    return str.upper()
str = ‘你好在哪来‘

print(getStrAllAplha(str))
print(getStrFirstAplha(str))

输出:

NHZNL

N

本文原文地址:https://www.cnblogs.com/wukong1688/p/11149049.html

 

Python 获取中文的首字母 和 全部拼音首字母

原文:https://www.cnblogs.com/dengziqi/p/14263296.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!