Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
88669 07大小写转换 Python3 Accepted 42 MS 3748 KB 107 2024-08-20 12:05:25

Tests(10/10):


Code:

a = input() if a.isupper(): b=a.lower() print(b) if a.islower(): c=a.upper() print(c)