for this code in python,
>>>word="spaces"
>>>for i in range(len(word)):
... print word[i],
...
s p a c e s
>>>
If I do not want any spaces in between the letters that are printed, what should I do ? In C for eg, the printing is by default next to the last printed character.