from graphics import *
textEntry = Entry(150, 15)
I'm trying to learn Python Graphics (Zelle), and i'm trying to figure out how to create a text entry box where the user can input text that I can then take to determine some things, for example, asking the user what dimensions they want on the graphics window.
It's telling me
AttributeError: 'int' object has no attribute 'clone'
With little to no background on python graphics I have no idea what this means, can anybody help me out with this and show me how to make a text entry box sort of thing in graphics to get input from a user?