Checking the Version of Python Pandas – Pandas Tutorial Part 2

To check which version of Python Pandas is installed, type this code in your Jupyter Notebook or IDE that you are using:

import pandas as pd

print(pd.__version__)

It is always good to know the verson of Pandas.

Pandas Chapter 1

Leave a Comment