Guest User

Untitled

a guest
Dec 13th, 2016
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. a = [['Name', 1, 2, 3, 4, 5],
  2.      ['qwer', '+', '-', '+', '-', '-'],
  3.      ['qqq', '+', '+', '+', '+', '+'],
  4.      ['aaa', '-', '-', '-', '-', '-']]
  5.  
  6. for array in a:
  7.     for chunk in array:
  8.         print(chunk, end=' ')
  9.     print(end='\n')
Advertisement
Add Comment
Please, Sign In to add comment