Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
141900 胡海峰老师 09判断ASCLL码 Python3 Accepted 32 MS 3740 KB 242 2025-12-28 20:32:09

Tests(5/5):


Code:

# 读取输入的字符 ch = input().strip() # 判断字符类型 if 'A' <= ch <= 'Z': print("Upper Letter") elif 'a' <= ch <= 'z': print("Lower Letter") elif '0' <= ch <= '9': print("Digital") else: print("other")