Reputation: 21
arr=[[2,3,4],[3,4,2]] for i in arr: print(*i) print{'-----')
2 3 4 ----- 4 5 6 -----
2 3 4 4 5 6 -----
Upvotes: 1
Views: 117
Reputation: 140
arr=[[2,3,4],[3,4,2]] for i in arr: print(*i) print('-----')
Upvotes: 2
Reputation: 42