how to display output in entry box .or any othr field in python? i want to convert enterd number into entry box into another no system and show the output in another entry field....plz anybody help
gui in python ...
Collapse
X
-
Use get() to get the contents and insert() to insert it into another Entry http://effbot.org/tkinterbook/entry.htm There are many examples on the web.
Comment