Answers for "python size of np array"

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
0

numpy number of elements

import numpy as np
x = np.array([1,2,3], dtype=np.float64)
print("Size of the array: ", x.size)
print("Length of one array element in bytes: ", x.itemsize)
print("Total bytes consumed by the elements of the array: ", x.nbytes)
Posted by: Guest on December-22-2020

Python Answers by Framework

Browse Popular Code Answers by Language