'Reading python tkinter data?
code window I have this window where you can now enter text in the respective windows. However, I just want to "send" them and send them to my console so that I can add them to the database afterwards.
My question now is whether this is feasible and how? Is there a button command that sends the written text to the console?
Solution 1:[1]
Entry().get()
returns a string with value. For example, to get your data from e1
you need to use e1.get()
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 |
