In article <[EMAIL PROTECTED]>, "Samuel" <[EMAIL PROTECTED]> wrote: > How can I print a word without appending a newline character? Appending > a "," to the print statement only substitutes the newline for a space, > which is not what I am looking for.
For closer control over output, use the write() function. You want something like: import sys for i in range(3): sys.stdout.write (str(i)) -- http://mail.python.org/mailman/listinfo/python-list