[Tutor] Printing

Pete Versteegen pversteegen@gcnetmail.net
Fri Feb 14 16:40:02 2003


Hi pythonians,

I'm wrestling with a formatting issue:

>>> x=['h','e','l','l','o']
>>> for i in range(0, len(x)):
...     print x[i],
... 
h e l l o


I can't figure out how do I print this without the spaces between the
letters?


Thanks!