我下载了Canopy,我想使用Tkinter
,为此,我禁用了pylab
并运行了该程序,但仍未显示任何内容。另外,我尝试了jupyter
上的tkinter和同样的问题。
我怎样才能让它发挥作用?
这是我的代码:
import Tkinter as Tk
screen=Tk.Tk()
screen.title("Matplot Graphies")
screen.geometry("500x500")
我尝试使用简单的代码来查看GUI但仍未发生任何事情。
答案 0 :(得分:3)
您需要在最后调用mainloop()
方法。
import Tkinter as Tk
screen=Tk.Tk()
screen.title("Matplot Graphies")
screen.geometry("500x500")
screen.mainloop()