Is it possible to create a group of list/array from another list.
Have
L = ['a','b','c','d','e',]
would like
a=[]
b=[]
c=[]
d=[]
e=[]
|
You could, with some hackery, create variables from strings. However, this is almost never a good idea. Just use a
(In Python 2.7 and 3.x, you can write this as a single expression thanks to dictionary comprehensions: |
|||||||||||||||
|
|
Here's one way:
This updates the |
|||||||
|
a? Is it a string ("a")? – delnan Apr 8 '11 at 19:39