How to check the version of Python in Jupyter Notebook

You can check the version of Python in Jupyter Notebook by following the given methods. If you want to learn Python then I will highly recommend you to read This Book.

How to check the version of Python in Jupyter Notebook
How to check the version of Python in Jupyter Notebook

Method 1

from platform import python_version
print(python_version())

Method 2

import sys
print(sys.version)

People are also reading:

What is Computer Vision? Examples, Applications, Techniques

Top 10 Python Books | Best Python Books

Machine Learning Books

Top 10 Deep Learning Books

Top 10 Computer Vision Books

Best Data Science Books

Artificial Intelligence Books

Top 30 Applications of Artificial Intelligence

Leave a Comment

Your email address will not be published.