我创建了一个Tkinter GUI并作为独立代码成功关闭,但是当我尝试使用matplotlib.pylplot打开一个不相关的数字时,GUI重新出现。所使用的代码的缩短版本是为了简洁(问题仍然存在),我在MacOSX上使用python 2.7.14运行它
from Tkinter import *
def gui():
root = Tk()
frame = Frame(root)
frame.place(x=600,y=600)
label = Label(root, text="Folder for")
label.place(x=30,y=160)
button_exit = Button(root,
text="Exit",
command=root.destroy)
button_exit.place(x=320,y=280)
root.geometry("600x350")
root.attributes("-topmost", True)
root.mainloop()
gui()
import time
time.sleep(1.5)
from matplotlib import pyplot
figure = pyplot.figure()
pyplot.show()