4.#使用pycharm.编写一个函数计算传入字符串中字符的个数

4.#使用pycharm.编写一个函数计算传入字符串中字符的个数
def count(s):
alpha,num,space,other=0,0,0,0
for i in s:
if i.isalpha():
alpha+=1
elif i.isdigit():
num+=1
elif i.isspace():
space+=1
else:
other+=1
print('英文字符数{},数字字符数{},空格字符数{},其他字符数{}'.format(alpha,num,space,other))
count(input("请输入一个字符串:"))

上一篇:c++运算符重载


下一篇:vector类的简单实现