answer == raw_input("Do you like python?")
if answer == "yes":
print "That is great"
elif answer == "no"
print "that is disappointing"
else:
print "that is not the answer to my question"
The problem with this code is that python 2.7.2 ignores my first two conditions, but responds to the last one. Why is this? I am about two and half weeks new into learning python and I have been looking for other resources. Here is the reference to where I originally got the info from http://www.upriss.org.uk/python/PythonCourse.html
answer = raw_input(...)with a single=just like the answers here. Did you make an error retyping the example? – Greg Hewgill Dec 25 '11 at 7:06