Answers for "numpy array size of column"

1

number of rows or columns in numpy ndarray python

# get number of rows in 2D numpy array.
numOfRows = np. size(arr2D, 0)
# get number of columns in 2D numpy array.
numOfColumns = np. size(arr2D, 1)
Posted by: Guest on June-15-2020

Python Answers by Framework

Browse Popular Code Answers by Language