代码 :
n,X=input(),0
for t in range(int(n)):
eval(input())
print(X)
Traceback (most recent call last):
File "prog.py", line 3, in <module>
eval(input())
File "<string>", line 1
X++
^
SyntaxError: unexpected EOF while parsing
在我能找到但在 python 3.x 中唯一的解决方案中使用raw_input
而不是:如何在 Python 3 中使用 raw_inputinput()
input
raw_input()
还有其他方法吗?
供参考; 我正在尝试解决:http ://codeforces.com/problemset/problem/282/A