Python2 input, input() eval(raw_input()). klj, Python , .
raw_input, Python2.
1: klj :
>>> input()
klj
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<string>", line 1, in <module>
NameError: name 'klj' is not defined
2: klj :
>>> klj = 'hi'
>>> input()
klj
'hi'
3: raw_input:
>>> raw_input()
klj
'klj'