使用while循环
# -*- coding:utf-8 -*-
import string
s = input('请输入一个字符串:\n')
letters = 0
space = 0
digit = 0
others = 0
i = 0
while i <len(s):
c = s[i]
i += 1
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))
使用for循环
# -*- coding:urf-8 -*-
import string
s = input("请输入一个字符串:\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))
请输入一个字符串:
asd7868@!#ASD
char 6,space 0, digit 4, others 3