python怎么统计中文字符

python统计中文字符的方法:首先定义函数;然后将初始计数值设置为0;再输入“s.isalpha()”判断是否为中文字符,如果是则计数值加1;最后打印出计数值结果即可。

def str_count(str):
    '''找出字符串中的中文字符的个数'''
        count_zh =  0
    for s in str:
         # 中文
        if s.isalpha():
            count_zh += 1
    print('中文:', count_zh)

推荐课程:Python进阶视频教程

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python怎么统计中文字符