Python输入字符串统计英文,数字,空格,其他字符的个数

def count(*a):
    nub = 0
    speace = 0
    en = 0
    other = 0
    length = len(a)
    for i in range(length):
        for each in a[i]:
            #isalpha()判断字符ch是否为英文字母
            if each.isalpha():
                en += 1
            #isdigit()判断是否为数字    
            elif each.isdigit():
                nub += 1
            elif each == ' ':
                speace += 1
            else:
                other += 1
    print('第%d个字符串有 %d ,数字有 %d ,空格有 %d ,其他字符有 %d' %(i+1 , en , nub , speace , other))
 
a = input('输入相关语句')
count(a)

 

你可能感兴趣的:(Python)