Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
88679 07大小写转换 Python3 Accepted 46 MS 3764 KB 87 2024-08-20 14:37:30

Tests(10/10):


Code:

s = input() num = ord(s) if num >=97: num -= 32 else: num += 32 print(chr(num))