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']]
|
How can I convert the list of strings to list of list as
and the converted to
|
|||||
|
|
Use a list comprehension:
|
|||
|
|
|
use a list comprehension :
or use
or as @mata points out, if you want something like this:
or with
|
||||