题解 | #统计字符#
统计字符
https://www.nowcoder.com/practice/539054b4c33b4776bc350155f7abd8f5
while True: try: s=input() alphas,digits,blanks,others=0,0,0,0 for i in s: if i.isdigit(): digits+=1 elif i.isalpha(): alphas+=1 elif i == ' ': blanks+=1 else: others+=1 print(alphas,blanks,digits,others,sep='\n') except: break