Answers for "python create numpy array of size"

0

dimensions of np array python

>>> x = np.zeros((3, 5, 2), dtype=np.complex128)
>>> x.size
30
>>> np.prod(x.shape)
30
Posted by: Guest on April-16-2020

Python Answers by Framework

Browse Popular Code Answers by Language