Answers for "initializing array of a certain shape in python[["

1

python numpy array size of n

numpy.array([0] * n) #creates an int64 numpy array of size n with each element having a vaule of 0
numpy.array([0] * n, dtype = '<type>') #creates a numpy array of size n with a type of <type>
Posted by: Guest on October-07-2020

Code answers related to "initializing array of a certain shape in python[["

Python Answers by Framework

Browse Popular Code Answers by Language