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.