Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
105168 丁俊杰 07大小写转换 Python3 Accepted 34 MS 3740 KB 92 2025-01-12 16:03:22

Tests(10/10):


Code:

s=input() if 65<=ord(s)<=90: print(chr(ord(s)+32)) else: print(chr(ord(s)-32))