Computer Science, asked by 2shrestha28, 3 months ago

write a program in python to enter any character and print it is upper case, lower case, digit or symbol.

Answers

Answered by hh9486205298
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