输入一个字符串,统计其中数字字符及小写字符的个数
n=input()num=low=0for i in n: if i>='0' and i<='9': num+=1 elif i>='a' and i<='z': low+=1print('共有{}个数字,{}个小写字符'.format(num,low))