Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to take a split up list and join them into another list. For example, I have this list:

['T', 'e', 's', 't', '\n', 'List', '\n']
Now I want to join these so it looks like
['Test', 'List']
How can I do this?

share|improve this question
What are the rules? One letter strings are combined? '\n' is simply ignored? Or is '\n' the end of a string? – S.Lott Apr 19 '11 at 15:43

2 Answers

I'm afraid that your question is a little underspecified, as S. Lott comments, but it looks as if you just want to join all the strings together and then split where there are newlines - the following works for your example, and could be easily modified for other requirements:

>>>> ''.join(['T', 'e', 's', 't', '\n', 'List', '\n']).splitlines()
['Test', 'List']
share|improve this answer

string joining is an amazing thing

l = ['T', 'e', 's', 't', '\n', 'List', '\n']
"".join(l).split('\n')

Works by taking a "" string, creating a larger string by appending all of l to it giving "Test\nList\n". Then splitting on end of line giving ["Test", "List"]

share|improve this answer
+1 because splitting on '\n' is more explicit in this case than splitting with splitlines() – Joce Apr 19 '11 at 15:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.