Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
88691 07大小写转换 Python3 Accepted 37 MS 3752 KB 102 2024-08-20 15:22:56

Tests(10/10):


Code:

a=input() if ord(a)>=97: da=a.upper() print(da) else: xiao=a.lower() print(xiao)