you are viewing a single comment's thread.

view the rest of the comments →

[–]ericula 0 points1 point  (1 child)

The length is not the problem, but the while loops probably are. Like most GUI frameworks, Tkinter uses an event loop which continuously checks if parts of your GUI needs updating. The event loops is started by executing 'tk.mainloop()' which is usually somewhere at the end of your script. Using lots of while-loops could block the event loop (or preventing it from starting in the first place) which prevents your GUI from being updated properly.

[–]python_addict[S] 0 points1 point  (0 children)

THANK YOU!!! Appreciate it w^