Advertisement
MRZ2342

Untitled

Apr 4th, 2020
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. listm = m
  2. res = ''
  3. for i in range(len(listm)):
  4.     for j in range(len(listm)):
  5.         res += str(listm[i][j]) + ' '
  6.     res += '\n'
  7. print(res)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement