python统计字符串中文字符的个数

做~自己de王妃 提交于 2020-01-22 02:45:06
string = input()
num = 0
ch = 0
space = 0
other = 0
for x in string:
    # if x.isnumeric():
    if  '\u0030'<=x<='\u0039':
        num+=1
    elif x.isspace():
        space+=1
    elif x.isalpha() or '\u4e00' <= x <= '\u9fff':
        ch+=1
    else:
        other+=1
print(ch,space,num,other)
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!