summaryrefslogtreecommitdiff
path: root/tests3/data/construct-python-tuple-list-dict.code
blob: 20ced9883cfc814cf172c5f6412a6c73397e164a (plain)
1
2
3
4
5
6
[
    [1, 2, 3, 4],
    (1, 2, 3, 4),
    {1: 2, 3: 4},
    {(0,0): 0, (0,1): 1, (1,0): 1, (1,1): 0},
]