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

Possible Duplicate:
How to convert list into a string?

Hi there, How to convet list to an string. thanks

share|improve this question
2  
Welcome to stackoverflow. This is common question, you can just use search to find the answer. – Senthil Kumaran Apr 11 '11 at 8:53

marked as duplicate by dogbane, Nicholas Knight, esaelPsnoroMoN, jzd, marcog Apr 11 '11 at 12:42

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

By using ''.join

list1 = ['1', '2', '3']
str1 = ''.join(list1)

Or if the list is of integers, convert the elements before joining them.

list1 = [1, 2, 3]
str1 = ''.join(str(e) for e in list1)
share|improve this answer
Traceback (most recent call last): File "<console>", line 1, in <module> TypeError: sequence item 0: expected string, int found – Andrey Apr 11 '11 at 8:54
karma sniper... – Nathan Apr 11 '11 at 8:54
1  
This will break. The string .join method requires an iterable of strings and not integers. Your second line should be str1 = "".join(str(x) for x in list1) – Noufal Ibrahim Apr 11 '11 at 8:54
Thanks for noticing. Updated the answer. – Senthil Kumaran Apr 11 '11 at 9:02
>>> L = [1,2,3]       
>>> " ".join(str(x) for x in L)
>>> '1 2 3'
share|improve this answer
What is sl here used for? Also, in your right side for sl2, it would be cleaner to use a genexp instead of a comprehension. – Noufal Ibrahim Apr 11 '11 at 8:58
i edited answer – Andrey Apr 11 '11 at 9:02
L = ['L','O','L']
makeitastringdammit = ''.join(map(str, L))
share|improve this answer
it throw TypeError exception,like this: In [15]: L=['1','2','3'] In [16]: print ''.join(map(str,L)) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-16-f3b8e6cb2622> in <module>() ----> 1 print ''.join(map(str,L)) TypeError: 'str' object is not callable – wgzhao Jan 6 at 11:44

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