Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94175 余泽越 09判断ASCLL码 Python3 Wrong Answer 38 MS 3744 KB 223 2024-10-19 20:37:40

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


Run Info:

------Input------
4
------Answer-----
Digital
------Your output-----
other