Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
113938 杨嘉陆 08大小写转换 Python3 Wrong Answer 35 MS 3740 KB 94 2025-03-17 20:20:55

Tests(0/10):


Code:

a=input() if 97<=a<=122: print(chr(ord(a)-32)) if 65<=a<=90: print(chr(ord(a)+32))


Run Info:

------Input------
l
------Answer-----
L
------Your output-----