I am a beginner in python and I wanted to repeat my code from the Answer =raw_input("Do you want to get better?") if the user enters anything other than no or yes, because after saying "you can only choose yes or no " the code ends and it doesn't ask again
choosing_options = ["Yes","No"]
Answer = raw_input("Do you want to become Better?")
if Answer == 'Yes' :
print 'Great We Will Start Tommorow, meet me at Jhon\'s backyard at 3 AM '
elif Answer == 'No' :
print "Well too bad, meet me again if you change your mind "
elif Answer != choosing_options :
print "You can only choose yes or no!!"