1

我创建了 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()
4

1 回答 1

0

我假设pyinPlot()指的是matplotlib.pyplot?

在这种情况下,您的调用py.show()将阻塞,直到绘图窗口关闭;将其更改为py.show(block=False)并重新阅读文档

于 2013-11-13T04:20:28.537 回答