Quickpaste.it
Create Paste
Top Pastes
Recent Pastes
Settings
Account
Untitled Paste
Created By
Anonymous
Expires never
Raw
Download
0
def teststr(str): up=0 lo=0 for i in str: if i.isupper(): up=up+1 elifi.islower(): lo=lo+1 print("Uppercase count:",up) print("lowercase count:",lo) m=input("enter the string") teststr(m)