How to create 2D 4-byte integer (int32) array with numpy in Python

1 Answer

0 votes
import numpy 
  
arr = numpy .array([[1, 2, 3], [4, 5, 6]], numpy.int32)

print(arr.shape)
print(arr.dtype)
print(arr) 

'''
run:

(2, 3)
int32
[[1 2 3]
 [4 5 6]]
 
'''

 



answered Jan 19, 2019 by avibootz

Related questions

1 answer 152 views
1 answer 229 views
2 answers 279 views
3 answers 316 views
1 answer 163 views
...