Suppose I have a list called "Collection":
Collection = ['a','b','c','d']
From this list, I would like to create 4 lists:
a_list = []
b_list = []
c_list = []
d_list = []
Is there a way to do something like the followings to create the above 4 lists?
for item in Collection:
item_list = []