Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
105169 丁俊杰 07大小写转换 Python3 Accepted 36 MS 3748 KB 103 2025-01-12 16:07:44

Tests(10/10):


Code:

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