Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
349951 123456 【入门】大小写转换-2 Python3 通过 100 125 MS 3732 KB 113 2025-09-19 18:58:17

Tests(3/3):


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


测评信息: