This is my code:
x = input ( "Hello what is your name : ")
print ("Nice to meet you " + x)
y = input ("Would you like to play Ted Ryan's Great Adventure Game? If you would like to play write yes if not write no")
y = yes
if y == "yes" print "lets begin"
What I am trying to is if the input for the question "Would you like to play Ted Ryan's Great Adventure Game? If you would like to play write yes if not write no" is yes I want it to print let's begin.
However, I sometimes get the errors "EOF while parsing" or "syntax error".