fork download
  1. from numpy import *
  2. arr1 = array ([
  3. [1,2,3],
  4. [4,5,6]
  5. ])
  6.  
  7. print(arr1)
Success #stdin #stdout 0.03s 82240KB
stdin
Standard input is empty
stdout
[[1 2 3]
 [4 5 6]]