I'm looking for a way to print a multidimensional lists in a specific way. This is how my list full of int looks.
[[1,2,3],[4,5,6]]
or
[[1,2,3,4,5,6]]
I want to print each element with a space and a comma between the two 'big' elements in the list. So for my example the output would be:
1 2 3, 4 5 6
and
1 2 3 4 5 6
I use python 3.4.2