Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- text = input()
- capital = 0
- small = 0
- for c in text:
- if ord(c) >= 65 and ord(c) <= 90:
- capital += 1
- elif ord(c) >= 97 and ord(c) <= 122:
- small += 1
- print(str(capital) + " " + str(small))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement