Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

veenabcfgbhtfghjnyjmuuuuuuyjy

s = raw_input('Enter the string')
l=len(s)
for i in (0,l)
d={"UPPER CASE":0, "LOWER CASE":0}
for c in s:
if(c.isupper()):
    d["UPPER CASE"]+=1
elif c.islower():
    d["LOWER CASE"]+=1
else:
pass
print "UPPER CASE", d["UPPER CASE"]
print "LOWER CASE", d["LOWER CASE"]


    

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.