我目前在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)
然而,该程序运行良好。
我有什么办法可以删除错误符号,还是有更好的解决方法可以解决这个问题?