Need help on the week three "Driving Me Crazy" question. I've got it to work for any variation of yes, but it doesn't work when the 'yes' is in the middle of the reply. e.g. if the reply is "Ummm oh yes here we are". Here's what I got so far
print("Let's go!")
There = input('Are we there yet? ')
Answer = There.lower()
while Answer != 'yes':
print('Aww...')
There = input('Are we there yet? ')
Answer = There.lower()
print('Hooray!!!')