Code:
for a in patrow2:
print " "
for b in a:
print b,
**
1 0 0
1 1 0
1 1 0
**
patrow2 is the list of lists , which in this case is [[1, 0, 0], [1, 1, 0], [1, 1, 0]]
but how do u get rid of the spaces in between the numbers?
Leave a comment: