I'm trying to call another py with a button in this GUI below. How can I create a button that calls another py?
The other py is in: Y:\path\python_robos\Controle_teste.py
import tkinter
janela = tkinter.Tk()
janela.title("Controle dos Robôs - Mercado de Capitais / Diretoria de Securitização")
janela.geometry("1000x500+100+100")
lb = Label(janela, text = "Para rodar os robôs clique no botão abaixo.")
lb.place(x=10, y=20)
lb2 = Label(janela, text = "Robôs criados por Antonio Hildenberg com supervisão de Felipe Ribeiro. Set/2019")
lb2.place(x=10, y=470)
janela.mainloop()
can anydoby help me? tks