I'm using python version 3.4.2.
I have two python script with tkinter used.
Example: one.py
and two.py
.
Then in two.py, there will be a back button, thus when the back button is clicked, it will close the two.py and back to one.py.
This is my elif statement in one.py:
elif len(admin) == 1 and len(staff) == 0:
----open and run two.py----
In two.py:
def back():
app.destroy()
back = Button(command=back).pack()
Is there any way i can get this going? Thank you.