I'm new to python and learning, when i get to the final print line, how do i get it to return to line 1? I cannot see a 'goto' or similar. Thanks.
ANSWER1 = input ("Do you own an Xbox?")
if ANSWER1 == "Yes":
print ("Nice!")
elif ANSWER1 == "No":
print ("Too bad...")
else:
print ("It is a simple yes or no question try again.")