Python編程練習,統計輸入的字符串中的各類字符個數

Python:統計輸入的字符串中的各類字符個數(字母,數字,空格,其餘字符) 例如: 輸入abc 123 *** 輸出3 2 3 3 代碼一:git s=list(input('輸入字符串:')) count=len(s) a=0;b=0;c=0;d=0 for i in range(0,count): if (s[i]<='z' and s[i]>='a') or (s[i]<='Z' and
相關文章
相關標籤/搜索