string=raw_input("Enter string:")
count1=0
count2=0
for i in string:
if(i.islower()):
count1=count1+1
elif(i.isupper()):
count2=count2+1
print("The number of lowercase characters is:")
print(count1)
print("The number of uppercase characters is:")
print(count2)
import string
print string.ascii_lowercaseOutputabcdefghijklmnopqrstuvwxyz
#The lower() method returns the string in lower case:
a = "Hello, World!"
print(a.lower())
#plz like if found helpful or tell me about my mistakes in comment
y = text = "HI THIS IS HUSSEIN ASADI FROM IRAN"
y = text.lower()
print(y)