1 | initial version |
If n
is your number of vertices, you can for instance create a list of n
empty lists as follows:
sage: L = [[] for _ in range(n)]
And then you can access the (empty) list number i
(for i
from 0
to n-1
) using:
sage: L[i]
[]
sage: L[i].append(0)
sage: L[i]
[0]