so i have this code
import sys
import random
answer = random.randint(1,9)
guess = raw_input("What is your guess?")
if guess == answer :
print "you win"
sys.exit
else :
print "you lose"
whenever it shows the "you lose" screen, i want it to return to the beginning
can someone show me how to use the "return" command
i looked online but there weren't that great of resources