题解 | #统计大写字母个数# python简单方法
统计大写字母个数
http://www.nowcoder.com/practice/434414efe5ea48e5b06ebf2b35434a9c
只需要使用一次for遍历字符串中的每一次字符,判断是否为字母,如果符合,使用upper()转为大写,判断这两个字符串是否相等,相等该字符就是大写字母。
while True:
try:
s = input()
num = 0
for i in s:
if i.isalpha() and i == i.upper():
num+=1
print(num)
except:
break