In [2]:
import numpy as np 
x = np.array([[1, 2, 3], [4, 5, 6]], np.int32)
print x


[[1 2 3]
 [4 5 6]]

In [ ]: