Hello, is this a bug? I get different results when I run this from command prompt and IDLE.
name = input('Hello what is your name: ')
print('Hello ' + name + '.')
From IDLE, it works correctly. The result shows as
Hello Bob.
If I run the program from a command prompt, (ie. c:\python32\python.exe name.py) the '.' is going to the front of returning print() statment, it looks like this
.ello Bob
Is this a bug?