Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94176 余泽越 09判断ASCLL码 Python3 Accepted 39 MS 3772 KB 237 2024-10-19 20:38:27

Tests(5/5):


Code:

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)>=ord('0') and ord(a)<=ord('9'): print("Digital") else: print("other")