I'm trying to create a really basic program with Python 2.7.10 as displayed below:
Colour = input("What's your favourite colour?")
print (Colour)
After I answer my question, say I answer "Blue", I get this error:
Traceback (most recent call last):
File "C:/Python27/Practise.py", line 1, in <module>
Colour=input("What's your favourite colour?")
File "<string>", line 1, in <module>
NameError: name 'Blue' is not defined
I know this may seem like a noob question, but if I could get your help on how to fix this, that would be great.