摘要: 输入一个字符串,统计其中数字字符及小写字符的个数 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,l 阅读全文
posted @ 2024-03-19 23:34 涨涨涨张 阅读(2) 评论(0) 推荐(0) 编辑