1. 程式人生 > >python實現 輸入一行字元,分別統計出其中英文字母,空格,數字和其他字元的個數

python實現 輸入一行字元,分別統計出其中英文字母,空格,數字和其他字元的個數

               
s=input('input a string:\n')letters=0space=0digit=0others=0for c in s:    if c.isalpha():        letters+=1    elif c.isspace():        space+=1
    elif c.isdigit():        digit+=1    else:        others+=1print('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


           

再分享一下我老師大神的人工智慧教程吧。零基礎!通俗易懂!風趣幽默!還帶黃段子!希望你也加入到我們人工智慧的隊伍中來!https://blog.csdn.net/jiangjunshow