这是我在尝试运行代码时遇到的错误。
from tkintertable.Tables import *
File "C:\Python33\lib\site-packages\tkintertable\Tables.py", line 620
print 'found in',row,col
^
SyntaxError: invalid syntax
这是代码
from tkinter import *
from tkintertable.Tables import *
from tkintertable.TableModels import *
master = Tk()
tframe = Frame(master)
tframe.pack()
table = TableCanvas(tframe)
table.createTableFrame()
有什么想法吗?
答案 0 :(得分:1)
在Python 3中,print
已成为函数而非声明:
print("hello")
而不是
print "hello"
有关详细信息,请参阅http://legacy.python.org/dev/peps/pep-3105/。