Python第19讲动手题最后一个
本帖最后由 全新小小白 于 2021-3-24 08:59 编辑参考答案:
def count(*param):
length = len(param)
for i in range(length):
letters = 0
space = 0
digit = 0
others = 0
for each in param:
if each.isalpha():
letters += 1
elif each.isdigit():
digit += 1
elif each == ' ':
space += 1
else:
others += 1
print('第 %d 个字符串共有:英文字母 %d 个,数字 %d 个,空格 %d 个,其他字符 %d 个。' % (i+1, letters, digit, space, others))
count('I love fishc.com.', 'I love you, you love me.')
倒数第二行,此处是如何定义的?实在是没理解,感谢各位帮帮忙讲一下
我智障,我懂了
页:
[1]