Question is:
PAPER DOLL: Given a string, return a string where for every character in the original there are three characters:
paper_doll('Hello') --> 'HHHeeellllllooo'
paper_doll('Mississippi') --> 'MMMiiissssssiiippppppiii'
and I wrote the code:
def paper_doll(text):
for lettes in text:
for i in range(0, len(text) - 1):
return text[i] * 3