write a program in python to enter any character and print it is upper case, lower case, digit or symbol.
Answers
Answered by
0
Answer:
Program
# Take input from user ch = input("Enter any character : ")[0] # Check for uppercase, lowercase if ch. isupper() : print("\n" + ch, "is UPPERCASE alphabet.") elif ch. islower() : print("\n" + ch, "is LOWERCASE alphabet.") else : print("\n" + ch, "is not an alphabet.").
I think it will be useful for u
plz mark me as the brainliest
Similar questions