Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
353996 胡珂 【入门】大小写转换-2 Python3 通过 100 119 MS 3732 KB 113 2025-10-01 13:07:22

Tests(3/3):


s=input() if s.isupper(): print(chr(ord(s)+32),end='') elif s.islower(): print(chr(ord(s)-32),end='')


测评信息: