I\'m trying to create multiple lists like the following:
l1 = [] l2 = [] .. ln = []
Is there any way to do that?
You can use dictionary comprehension:
obj = {i:[] for i in list(range(1,5))}