Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

numpy get array size

myArray.shape # Returns the number of rows, columns etc. (depends on dimensions how many numbers you get)

print(a_1d.shape)
# (3,)

print(type(a_1d.shape))
# <class 'tuple'>

print(a_2d.shape)
# (3, 4)

print(a_3d.shape)
# (2, 3, 4)
Source by note.nkmk.me #
 
PREVIOUS NEXT
Tagged: #numpy #array #size
ADD COMMENT
Topic
Name
4+6 =