码迷,mamicode.com
首页 > 编程语言 > 详细

统计输入任意的字符中中英文字母,空格和其他字符的个数 python

时间:2018-11-02 23:45:33      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:git   英文   pre   空格   +=   def   运行   nbsp   span   

这里用到了三个函数:

#判断是否为数字:str.isdigit()
#是否为字母:str.isalpha()
#是否为空格:str.isspace()
def tongji(str):
    alpha = 0
    number = 0
    space =0
    qt = 0
    for i in range(len(str)): #或者for i in str:
        if str[i].isalpha():  #接上一句改为:i.isalpha()
            alpha += 1
        elif str[i].isdigit():
            number += 1
        elif str[i].isspace():
            space += 1
        else:
            qt += 1
    print("中英文字母的个数为%i,数字的个数为%i,空格的个数为%i,其他字符的个数为%i." %(alpha,number,space,qt))
tongji("  12a deA F哈哈哈哈···")

运行结果:

中英文字母的个数为9,数字的个数为2,空格的个数为4,其他字符的个数为3.

 

统计输入任意的字符中中英文字母,空格和其他字符的个数 python

标签:git   英文   pre   空格   +=   def   运行   nbsp   span   

原文地址:https://www.cnblogs.com/carlber/p/9898645.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!