Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- a = [['Name', 1, 2, 3, 4, 5],
- ['qwer', '+', '-', '+', '-', '-'],
- ['qqq', '+', '+', '+', '+', '+'],
- ['aaa', '-', '-', '-', '-', '-']]
- a = [['Name', 1, 2, 3, 4, 5],
- ['qwer', '+', '-', '+', '-', '-'],
- ['qqq', '+', '+', '+', '+', '+'],
- ['aaa', '-', '-', '-', '-', '-']]
- for array in a:
- for chunk in array:
- print('{:^5}'.format(chunk), end='')
- print(end='\n')
Advertisement
Add Comment
Please, Sign In to add comment