3.19

输入一个字符串,统计其中数字字符及小写字符的个数

n=input()
num=low=0
for i in n:
if i>='0' and i<='9':
num+=1
elif i>='a' and i<='z':
low+=1
print('共有{}个数字,{}个小写字符'.format(num,low))

posted @ 2024-03-19 23:34  涨涨涨张  阅读(2)  评论(0编辑  收藏  举报