I just got some weird output of a python script:
[[(7, 6), (6, 4), (7, 2)], [...], [...], [...], [(7, 6), (8, 4), (7, 2)], [...], [...], [...], [...], [...], [...], [...]]
The output should be a list of lists of tuples. But I have no idea why [...] appears.
What does [...] mean?
I don't think its an empty list, as an empty list were []. Are these perhaps duplicates?