python实现:输入一行字符,分别统计出其中英文字母,空格,数字和其他字符的个数

s=input('input a string:\n')
letters=0
space=0
digit=0
others=0
for c in s:
    if c.isalpha():
        letters+=1
    elif c.isspace():
        space+=1
    elif c.isdigit():
        digit+=1
    else:
        others+=1
print('char=%d,space=%d,digit=%d,others=%d'%(letters,space,digit,others))

运行结果:

input a string:

gkjtrlkhgq  43678 ';m,2345gf erwhy

char=18,space=5,digit=9,others=3


你可能感兴趣的:(python,字符,数字,空格,其他字符个数)