2 odpowiedzi
+ 1
Your program will have a main file where the tkinter window would be created. From here you start to expand your application when adding functionality to it.
You could import the class into the main tkinter file and call to the functions in there. This would also makes sense since the logic behind the program should also work without the tkinter window. And its good practice to seperate the logic from eachother.
+ 1
thanks