Whenever I use the following code, it gives me a syntax error.
print('1. Can elephants jump?')
answer1 = input()
if answer1 = 'yes':
print('Wrong! Elephants cannot jump')
if answer1 = 'no':
print('Correct! Elephants cannot jump!'
I believe it has something to do with a string cannot be equal something?