def startpop(pop,job):
i = 0
L = [[[(random.uniform(1,0))]]]
while i < pop:
k = 0
if len(L) <= i:
L.append([[random.uniform(1,0)]])
I'm trying to understand this code. What is the meaning of three square brackets?