>>>[[] for x in range(10)] #To make a list of n different lists, do this:
[[], [], [], [], [], [], [], [], [], []]
Edit :-
[[]]*10
This will give you the same result like above but the list are not distinct instances,they are just n references to the same instance.