So far this is what I have got.
import random
answer1=(\"Absolutely!\")
answer2=(\"No way Pedro!\")
answer3=(\"Go for it tiger.\")
answer4=(\"There\'s different
after the import line add while True:
indent the entire code to the while loop. then at the end go like this:
restart = input("Would you like to try again?")
if restart == "yes":
continue
else:
break
To explain further. Continue will jump back up to the top pass
would work as well. break
will exit the loop. good luck!