If you want to know which specific version of Python you are using with your Jupyter Notebook, well you can write in a small code snippet one of the cells to quickly find out.
import sys
print(sys.version)
As you can see I am using Python 3 version 3.11.3

Another quick way is by running the shell command in a cell.
!python3 --version
You can even get the location where Python is installed using the which command.
which python3

Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!