summaryrefslogtreecommitdiff
path: root/progs/a824.py
blob: 5c8fcbd673c0f4ab0461cc76ae60334fdcdae764 (plain)
1
2
3
4
5
def upper_ctr(str):
    upper_ctr = 0
    for i in range(len(str)):
          if str[i] >= 'A' and str[i] <= 'Z': upper_ctr += 1
          return upper_ctr