Re: print and softspace in python

2007-03-15 Thread Bruno Desthuilliers
Phoe6 a écrit : > print and softspace in python > In python, whenever you use >>>print statement Drop the '>>>' part. It's just the default Python shell prompt. > it will append a > newline by default. If you don't want newline to be appen

Re: print and softspace in python

2007-03-14 Thread Stargaming
Phoe6 schrieb: > print and softspace in python > In python, whenever you use >>>print statement it will append a > newline by default. If you don't want newline to be appended, you got > use a comma at the end (>>>print 10,) > When, you have a list of

print and softspace in python

2007-03-14 Thread Phoe6
print and softspace in python In python, whenever you use >>>print statement it will append a newline by default. If you don't want newline to be appended, you got use a comma at the end (>>>print 10,) When, you have a list of characters and want them to be printed togeth