[Solved] How do I go back to a variable in python? [closed]
Maybe you want: while True: … This will put you back at the top if you place the statement at the top of your script. Like this: while True: command=raw_input(“j;/”) command1=”help” command2=”jver” if command==command1: print “List of commands” print”” print”” print”help = shows all commands” print “” print “jver = Version of MS-Josh” elif command==command2: … Read more