In python you can create a list like so:
[[0,0]]*n
This creates a list such as this:
[[0, 0], [0, 0], [0, 0]]
li = [[0,0] for i in range(players)]