题解 | #统计大写字母个数#
统计大写字母个数
http://www.nowcoder.com/practice/434414efe5ea48e5b06ebf2b35434a9c
# -*-coding:utf-8-*-
while True:
try:
input_m = input()
n=0
for s in input_m:
if s.isupper():
n+=1
print(n)
except:
break