jarvisteach / appJar

Simple Tkinter GUIs in Python
http://appJar.info
Other
615 stars 67 forks source link

tkinter introduction of values to read #624

Closed guillermocol closed 3 years ago

guillermocol commented 4 years ago

hello, I was trying to create a function to read data and to store it using tkinter. Basically I would like to introduce a value from console using tkinter and to store it in an array or a variable. Do you know the best function to use with tkinter?

Version Information

3.6

Thanks, G

guillermocol commented 4 years ago

Hi @jarvisteach would you recommend me to use another library perhaps?

jarvisteach commented 4 years ago

Hi there, I'm not really sure what your question is...

You can use an entry to capture input in a GUI, and save the results of that to any type of variable.

If you want to learn more about how to do that, have a look through lesson 3 in our learning resources.

guillermocol commented 4 years ago

Thank you jarvisteach, it is very useful.