Sagar Pudi
0
Q:

numpy get array size

np_array.size
2
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)
0

New to Communities?

Join the community