(I searched on this website + internet, but couldn't find an answer)
I am starting from:
myList = ['a', 'b', 'c']
And I want to get something pythonic equivalent of
a = []
b = []
c = []
or
a, b, c = ([] for i in range(3))
That is I want to create as many lists as elements in the original list and use (assign?) the elements in the original list as names for the list created.
Do you have suggestions, please?