Categories
Python Answers

How to find the installed Python Pandas version?

Spread the love

We can find the installed version of Python Pandas using the __version__ attribute of the Pandas module.

To do this we write

import pandas as pd

# Print the Pandas version
print("Pandas version:", pd.__version__)

When you run this code, it will print the version of Pandas installed in your Python environment.

By John Au-Yeung

Web developer specializing in React, Vue, and front end development.

Leave a Reply

Your email address will not be published. Required fields are marked *