Run ID |
作者 |
问题 |
语言 |
测评结果 |
Time |
Memory |
代码长度 |
提交时间 |
113215 |
江屹山 |
07大小写转换 |
Python3 |
Compile Error |
0 MS |
0 KB |
104 |
2025-03-15 14:24:18 |
Tests(0/0):
Code:
x=input()
if 97<=ord(x)<=97+25:
print(chr(ord(x))-32)
else:
print(chr(ord(x)+32)
Run Info:
File "Main.py", line 6
^
SyntaxError: unexpected EOF while parsing