fork download
  1. from array import *
  2.  
  3. T = [[11, 5, 2], [15, 6,10], [10, 12, 5], [15, 8, 6]]
  4.  
  5. for row in T:
  6. for value in row:
  7. print(value, end = " ")
  8. print()
Success #stdin #stdout 0.02s 9092KB
stdin
Standard input is empty
stdout
11 5 2 
15 6 10 
10 12 5 
15 8 6