Hello, when I try to run these two scripts together after a few tries it stops working? Is this because of the import module?
Python:
test = input("Go to new script?: ")
if test=="yes":
print("going to new script")
import test2
Python:
test = input("Go to old script?: ")
if test=="yes":
print("going to new script")
import test1