Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,907 questions

51,839 answers

573 users

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 155 views
1 answer 135 views
1 answer 214 views
1 answer 230 views
2 answers 259 views
...