RE: simple question on print

Jaap Vermeulen (jaap@sequent.com)
Tue, 08 Feb 94 11:14:00 PST

| How do I output a string WITHOUT the trailing space when I do:
| print 'this string',

sys.stdout.write('this string')
sys.stdout.flush()

is the only way to do it (or any wrapper around it).

-Jaap-