When I run this code(part of a larger project):
def Initialize (event,tk):
event.delete("all")
parch = tk.PhotoImage(file = "Parchment.png" )
parchment = event.create_image(175, 25, image = parch, anchor = "nw")
parchment.place(175, 25)`
Which gives the error:
parchment.place(175, 25)
AttributeError: 'int' object has no attribute 'place'
Technically, it all works fine and does its job; but having error messages is not really good either way.