如何创建一个打开python GUI的按钮

时间:2019-06-02 16:35:43

标签: python python-3.x tkinter

我想创建一个按钮,当按下该按钮时,它会打开python GUI

def Open():
    a=subprocess.Popen([sys.executable, "file.py"])
    a.communicate()
Button1 = Button(font=("Arial",18), text="example",command=Open)
Button1.place(x=10, y=10, width=100, height=100)

我希望它执行文件,但是什么也不做

0 个答案:

没有答案