Posts by Tony Anderson • 1 point
1 post
-
0
votes3
answers258
viewsA: Tkinter: Tk() not found
There’s a single error in your code, in last line. You wrote root.mainloop When the right thing would be root.mainloop() Note that the mainloop comes with parentheses, so mainloop() Your code then…