Installed Python 2.4.2 on Windows XP.
Activated IDLE.
Loaded the following to the Edit window:
---
print "hello world"
for i in range(10):
print i,
print "Done"
---
It prints as: 0 1 2 3 4 5 6 7 8 9 Done
Should not Done be printed on a new line alone?
Thanks for any guidance.