Module 'tkinter' has no attribute 'Tk'

前端 未结 5 873
傲寒
傲寒 2020-11-30 15:32

Tkinter doesnt contain any tk attribute.

import tkinter

window = tkinter.Tk()

win.mainloop()

While running this code it gives me an error

5条回答
  •  青春惊慌失措
    2020-11-30 16:07

    try 'Tk' instead of 'tk' it worked for me, if you think you are importing wrong,try: import tkinter tkinter._test()

提交回复
热议问题