Find the nature of character program in python
#program By eboostup.com
#Find the nature of character program in python
ch=input("Enter The Character")
n="Character's nature: "
if ch>='A' and ch<='Z':
print(n,'UPPERCASE')
elif ch>='a' and ch<='z':
print(n,'lower case')
elif ch>='0' and ch<='9':
print(n,'Digits')
else:
print("Special symbol")
print("Powered by eboostup")
#ankushdhingra