Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I convert the list of strings to list of list as

a=['A','B','C']

and the converted to

b=[['A'],['B'],['C']]
share|improve this question
1  
I'm curious why you need this. Most probably, YAGNI. – thg435 Oct 28 '12 at 15:24

2 Answers

Use a list comprehension:

In [7]: a = ['A', 'B', 'C']

In [8]: b = [[item] for item in a]

In [9]: b
Out[9]: [['A'], ['B'], ['C']]
share|improve this answer

use a list comprehension :

>>> a=['A','B','C']
>>> [list(x) for x in a]
[['A'], ['B'], ['C']]

or use map(), in python 3.x map() returns a map object so use list(map(list,a)) there:

>>> map(list,a)
[['A'], ['B'], ['C']]

or as @mata points out, if you want something like this:

>>> a=['foo','bar','spam']
>>> [[x] for x in a]
[['foo'], ['bar'], ['spam']]

or with map():

In [1]: a=['foo','bar','spam']

In [2]: map(lambda x:[x],a)
Out[2]: [['foo'], ['bar'], ['spam']]
share|improve this answer
1  
+1 for using map. – BrtH Oct 28 '12 at 13:54
4  
list on a string doesn't produce a list with the string in it. this example only works by accident here. – mata Oct 28 '12 at 13:56
4  
because this does only work for single character strings. try it with longer strings, or ints then you'll see... – mata Oct 28 '12 at 13:57
1  
@mata added your version too. – Ashwini Chaudhary Oct 28 '12 at 13:58
@downvoter can you explain the downvote? – Ashwini Chaudhary Nov 3 '12 at 19:54

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.