我创建了2个按钮。第一个按钮允许我以AgmPlot csv格式写入1234。但是我无法在AgmFolder中看到新创建的csv文件 - 我必须重新运行程序才能看到新创建的Excel csv文件。
def AGM():
Plot()
newDirRH = "C:/AgmPlots"
newfile = newDirRH + "/TabulatedStats.csv"
text_file = open(newfile, "w")
stringText = "1234"
x= stringText
text_file.write(x)
text_file.close()
print "Done"
def AGMFolder():
webbrowser.open(r'C:\AgmPlots')
def Plot():
py.plot(10,20)
py.show()
问题是由Plot()引起的。我不想把它带走,但我怎么能解决这个问题?
if __name__ == '__main__': #start of program
master = Tk.Tk()
button = Tk.Button(text='AGM', command=AGM, fg="red")
button.config( height = 10, width = 40 )
button.pack() #pack is needed to display the button
button1 = Tk.Button(text='Open AGM Folder', command = AGMFolder, fg="red")
button1.config( height = 10, width = 40 )
button1.pack()
master.mainloop()
答案 0 :(得分:0)
我认为py
中的Plot()
是指matplotlib.pyplot
?
在这种情况下,您对py.show()
的调用将会暂停,直到情节窗口关闭为止;将其更改为py.show(block=False)
并重新阅读documentation。