I'm a retired programmer and I'm new to python. My question is so simple it's embarrassing. I installed python on my desktop and I also installed Pythonista on my iPad. The following simple program works perfectly on the desk top, but not on my iPad:
input_var = ("enter your name: ")
print("Hello! " + input_var)
on the PC this works, but in Pythonista on the iPad, when I enter my name, Paul, the print statement fails with "NameError: name 'Paul' is not defined." I must be doing something stupid, but I don't see what. Any help?