How to Find the Installed Version of Pandas?

Spread the love

Problem –

You want to find the installed version of pandas.

Solution –

In [1]: import pandas as pd

In [2]: pd.__version__
Out[2]: '1.4.1'

First import pandas then use pd dot double underscore version double underscore.

Rating: 1 out of 5.

Leave a Reply