I\'m trying to display a python 2D list without the commas, brackets, etc., and I\'d like to display a new line after every \'row\' of the list is over.
This is my
print "\n".join(" ".join(map(str, line)) for line in ogm)
If you want the rows and columns transposed
print "\n".join(" ".join(map(str, line)) for line in zip(*ogm))