This is the error I am getting when I try to run the code.
from tkintertable.Tables import *
File "C:\Python33\lib\site-packages\tkintertable\Tables.py", line 620
print 'found in',row,col
^
SyntaxError: invalid syntax
This is the code
from tkinter import *
from tkintertable.Tables import *
from tkintertable.TableModels import *
master = Tk()
tframe = Frame(master)
tframe.pack()
table = TableCanvas(tframe)
table.createTableFrame()
Any ideas?