Saturday, March 2, 2019

Find Upper Case, Lower Case & Digit using In-built Function - Python3

a=input("Enter the character:")

print("enetred character is uppercase:",a.isupper())
print("entered character is lowercase:",a.islower())
print("entered character is digit:",a.isdigit())

ScreenShot:

No comments:

Post a Comment