get the number of columns of a numpy array

Numpy – Get the Number of Columns of an Array

In this tutorial, we will look at how to get the number of columns of a 2D array in Numpy with the help of some examples.

How to get the number of columns in Numpy?

get the number of columns of a numpy array

You can use the Python built-in len() function or the numpy.ndarray.shape property to get the number of columns of a 2d Numpy array.

The following is the syntax –

# num columns using the len() function
len(ar[0])
# num columns using the .shape property
ar.shape[1]

Let’s now look at both the methods in detail with the help of some examples –

First, we will create a 2d Numpy array that we will be using throughout this tutorial.

import numpy as np

# create a 2d array
ar = np.array([
    [1, 2, 3, 4],
    [1, 1, 0, 0],
    [5, 6, 7, 8]
])
# display the array
print(ar)

Output:

[[1 2 3 4]
 [1 1 0 0]
 [5 6 7 8]]

Here, we used the numpy.array() function to create a 2d array with three rows and four columns.

Method 1 – Number of columns using the len() function

len() is a Python built-in function that returns the length of an object. It is used on sequences or collections.

📚 Data Science Programs By Skill Level

Introductory

Intermediate ⭐⭐⭐

Advanced ⭐⭐⭐⭐⭐

🔎 Find Data Science Programs 👨‍💻 111,889 already enrolled

Disclaimer: Data Science Parichay is reader supported. When you purchase a course through a link on this site, we may earn a small commission at no additional cost to you. Earned commissions help support this website and its team of writers.

You can think of each row in a 2d Numpy array as a 1d array. If you apply the len() function on the first row (or any row for that matter) you’ll get the number of values in that row which is equal to the number of columns in the array.

# number of columns of array
print(len(ar[0]))

Output:

4

We get the number of columns in the above array as 4.

Method 2 – Number of columns using the .shape property

You can also get the number of columns in a 2d Numpy array by accessing its .shape property which returns the tuple (row_count, column_count). To only get the column count, access the value at index 1 from the shape property.

# number of columns of array
print(ar.shape[1])

Output:

4

We get the same result as above, 4.

Summary

In this tutorial, we looked at two methods to get the column count for a 2d array in Numpy.

  1. Use the Python built-in len() function. (Apply it on any row in the array)
  2. Via the .shape property of the array. (Value at index 1 in the shape tuple is the column count)

You might also be interested in –


Subscribe to our newsletter for more informative guides and tutorials.
We do not spam and you can opt out any time.


Author

  • Piyush Raj

    Piyush is a data professional passionate about using data to understand things better and make informed decisions. He has experience working as a Data Scientist in the consulting domain and holds an engineering degree from IIT Roorkee. His hobbies include watching cricket, reading, and working on side projects.

Scroll to Top