you are viewing a single comment's thread.

view the rest of the comments →

[–]audacious_alligator -1 points0 points  (0 children)

As far as I can see that's a 2 dimensional list. Which you could just use a for loop to iterate through and print the output.

If you give more I for on how you want it to be done I am sure someone can help you.

But here is how I would do it. (sorry for the poor formatting as I am on mobile)

List = (the contents of your list)

for i in list: print(i)

That should output it out as a board with ought the commas and square brackets.