Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
105167 | 丁俊杰 | 07大小写转换 | Python3 | Compile Error | 0 MS | 0 KB | 88 | 2025-01-12 15:58:50 |
s=input() if 65<=ord(s)<=90: print(chr(ord(s)+32)) else: print(chr(ord(s)-32
File "Main.py", line 5 print(chr(ord(s)-32 ^ SyntaxError: unexpected EOF while parsing