Skip to content
Advertisement

tkinter: How to create a class object with a function called by a Button?

I created an entry where I enter some value. By clicking the submit button I want the function create_object to get the entry value, then an object of the class Test_Class is created with the gotten value as a parameter and the object is returned.

But obviously that object has not yet been created and therefore cannot be accessed, right? How do I actually create a class object and then access it?

JavaScript

Advertisement

Answer

You could simply stop using procedural programming altogether, and then you don’t have to worry about scope issues. All I did was turn your code into classes and refactor it a little so you can test your write and read results.

Another simple change was: instead of worrying about things that may or may not exist, I simply created something that definitely exists to hold the aforementioned things, and you can just loop through that to find out what exists.

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement