我想创建一个按钮,当按下该按钮时,它会打开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)
我希望它执行文件,但是什么也不做