Advertisement
AlimusSifar

Alayna and Strings - Toph.co - Brute Force

Apr 24th, 2020
373
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. text = input()
  2. capital = 0
  3. small = 0
  4.  
  5. for c in text:
  6.     if ord(c) >= 65 and ord(c) <= 90:
  7.         capital += 1
  8.     elif ord(c) >= 97 and ord(c) <= 122:
  9.         small += 1
  10.  
  11. print(str(capital) + " " + str(small))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement