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


發佈了301 篇原創文章 · 獲贊 365 · 訪問量 159萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章