I'm fairly new to the python language and I've been looking for a while for an answer to this question.
I need to have a list that looks like:
['Kevin', 'went', 'to', 'his', 'computer.', 'He', 'sat', 'down.', 'He', 'fell', 'asleep.']
converted into a string that looks like:
Kevin went to his computer.
He sat down.
He fell asleep.
I need it in the string format so I can write it to a text file. Any help would be appreciated.