Run ID:94175
提交时间:2024-10-19 20:37:40
a = input() if ord(a) >= 97 and ord(a) <= 97+26: print("Lower Letter") elif ord(a) >= 65 and ord(a) <= 65+26: print("Upper Letter") elif ord(a)>=0 and ord(a)<=9: print("Digital") else: print("other")