Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
94172 | 余泽越 | 09判断ASCLL码 | Python3 | Wrong Answer | 39 MS | 3764 KB | 223 | 2024-10-19 20:35:23 |
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 int(a)>=0 and int(a)<=9: print("Digital") else: print("other")
------Input------
~
------Answer-----
other
------Your output-----