Computer Science, asked by parassrivastav, 5 months ago

wap to check whether the entered character is in uppercase or lowercase
hint(if((ch>'A'&&ch,<Z))​

Answers

Answered by nithish2439
1

Answer:

the code below is for python :

i=str(input("enter the character ")

j=ord(i)

if j<69and j>95:

print("the character entered is lowercase")

else:

print("the character entered is uppercase ")

Similar questions