Untitled

mail@pastecode.io avatar
unknown
python
7 days ago
271 B
1
Indexable
Never
inp = input()
if inp.isupper():
  print("Is Upper Case")
if inp.islower():
  print("Is Lower Case")
if inp.isdigit():
  print("Is Digit")
if inp.isalpha():
  print("Is Alpha")
if inp.isalnum():
  print("Is Alphanumeric")
else :
  print("Is Special Character")
Leave a Comment