4

我目前在 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)

但是,该程序运行完美。

我可以做些什么来删除错误符号,或者有没有更好的解决方案来解决这个问题?

4

1 回答 1

6

将语法版本更改为 Python 3.x。

语法版本

(上图来自http://pydev.org/manual_101_project_conf2.html

于 2013-10-14T03:19:10.863 回答