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
Simple way:
for row in list2D: print " ".join(map(str,row))