Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
107863 丁俊杰 07大小写转换 Python3 Accepted 38 MS 3744 KB 102 2025-01-18 15:19:05

Tests(10/10):


Code:

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