tkinter window not showing up even though its installed

Viewed 21

hi I have my program running with 0 errors but the window from tkinter is not showing I checked if it's installed and checked my version of python can anyone let me know what else it could be?

1 Answers

Change window.mainloop to window.mainloop() That calls mainloop instead of just referencing it.

Related