xxxxxxxxxx
string1="Rose"
string1= string1 + new string(' ', 10)
Adding spaces between each letter in a string
xxxxxxxxxx
def spaceitout(source):
pile = ""
for letter in source:
pile = pile + letter + " "
pile = pile[:-1] #Strip last extraneous space.
print pile