Capital and lower letter
m=input('Enter Your Line')
countupper=0
countlower=0
countelse=0
for i in m:
if i.isupper():
countupper+=1
elif i.islower():
countlower+=1
else:
countelse+=1
print(f'\nUpper Case Letter :{countupper}')
print(f'\nLower Case Letter :{countlower}')
print(f'\nElse (like . , e.c.t) :{countelse}')
o=m.upper()
print(f'\nYour line in Full Capital form :{o}')
q=m.lower()
print(f'\nYour line in Full Small form :{q}')