I've tried this simply code:
print ("Hello world")
name=input("gimme name\n")
print(name)
And its return this:
Hello world
gimme name
Marcus
Traceback (most recent call last):
File "./Desktop/python.py", line 2, in <module>
name=input("gimme name\n")
File "<string>", line 1, in <module>
NameError: name 'Marcus' is not defined
So. I know its not deffined i just want to define it. When I put in input place "Marcus" instead of Marcus, code working correct, but why my input is considered as a variable which cannot be found (obviously). I thought input is considered as a string and i need use int() or float() to change it.