How to create 2D int array with numpy in Python

3 Answers

0 votes
import numpy as npy
  
arr = npy.empty([2, 3], dtype = int) 

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

'''
run:

(2, 3)
int64
[[14329654312        1812568 14066430928]
 [145096484272 14012338192               0]]
 
'''

 



answered Jan 19, 2019 by avibootz
edited Jan 19, 2019 by avibootz
0 votes
import numpy 
  
arr = numpy.matrix([[1, 2], [3, 4], [5, 6]], numpy.int)

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

'''
run:

(3, 2)
int64
[[1 2]
 [3 4]
 [5 6]]

'''

 



answered Jan 19, 2019 by avibootz
edited Jan 19, 2019 by avibootz
0 votes
import numpy 
  
arr = numpy.zeros((3, 2), numpy.int)

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

'''
run:

(3, 2)
int64
[[0 0]
 [0 0]
 [0 0]]

'''

 



answered Jan 19, 2019 by avibootz

Related questions

1 answer 164 views
1 answer 152 views
1 answer 229 views
1 answer 249 views
2 answers 279 views
...