salil
07-31-2003, 12:04 AM
I am trying to use the text widget in Tkinter in Python. I am getting very strange error when I try to read in the contents of the textbox.
While using the get method, when I call
text.get() // I get an error saying get() requires at least two
// arguments, one given.
then I call,
text.get(0) // I get an error saying get takes on one argument,
// multiple arguments given.
If any of you have used this widget successfully, then please let me know which is the correct way to use get() with text widget.
Thanks a lot!!
While using the get method, when I call
text.get() // I get an error saying get() requires at least two
// arguments, one given.
then I call,
text.get(0) // I get an error saying get takes on one argument,
// multiple arguments given.
If any of you have used this widget successfully, then please let me know which is the correct way to use get() with text widget.
Thanks a lot!!