def main():
#These are the two options available
print ("1: register")
print("2: login")
signIn = int(input("Do you have an existing account? 1 or 2?"))
#yes = Y
#no = N
if signIn == 2:
existingUser()
elif signIn ==1:
newUser()
main()
existingUser():
print ("signin")
newUser():
print ("new user")#Message - the script above will not allow me to progress as when I run, it comes up with a syntax error when I try to call the existingUser or newUser module. I cannot see the syntax error.
when calling module comes up with syntax error
Users browsing this thread: 1 Guest(s)
