Program has to be able adding strings from the list and output them in sequence but in the way:
1 string
1 + 2 string
1 + 2 + 3 string ...
def spacey(array):passe = ""i = ""m = []for e in list(array):i += ereturn (i)
This gives me output of all strings added together like:
Thisismyquestionforyou
but it requires to work like:
This
Thisis
thisismy...
Thank you for any advice.