I am using Python version 2.7.3. When I try to run the below code, an error is throwing,
>>> value = input("get value: ")
    get value: hello
    Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
    File "<string>", line 1, in <module>
    NameError: name 'hello' is not defined
 
     
     
    