我目前在 Eclipse JavaEE Indigo 中使用 Python3.2。
我使用函数 print 如下:
input = open('test.txt', 'r')
for line in input:
print(line, end='')
Eclipse 报告语法错误
print(line, end = '')
它表明
Syntax error while detecting tuple.
print Found at: builtins
print(value, ..., sep=' ', end='\n', file=sys.stdout)
但是,该程序运行完美。
我可以做些什么来删除错误符号,或者有没有更好的解决方案来解决这个问题?