what is the diffence between this:
[[1, 2, 3], [1, 2, 3], [1, 2, 3]]
and this:
[(1, 2, 3), (1, 2, 3), (1, 2, 3)]
or is is the same? if not, when should I use the one or the other?
what is the diffence between this:
[[1, 2, 3], [1, 2, 3], [1, 2, 3]]
and this:
[(1, 2, 3), (1, 2, 3), (1, 2, 3)]
or is is the same? if not, when should I use the one or the other?