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

Tests(10/10):


Code:

s=input() if s.isupper(): #s是大写 print(s.lower()) else: print(s.upper())