Run ID:141900

提交时间:2025-12-28 20:32:09

# 读取输入的字符 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")