当前使用的Python版本是3.4.1,Windows平台
用官方文档里的print方法结果Eclipse提示语法错误 -- syntx error while detecting tuple
代码如下:
print(root, "consumes", end=" ")
原因:Eclipse 设置的python语法还是2.x的
解决方法如下:Eclipse菜单 Project > Properties > Python Interpreter/Grammar
这里我看到我的语法 Grammar Version 选择的是2.7
选择成3.0,然后Apply > OK, 问题解决。