Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (2.2k points)

Could someone tell me how to check the Python version in Jupyter Notebook?

1 Answer

0 votes
by (3.9k points)

Just write down the following code in the Notebook and you would get the Python version as the output.

from platform import python_version

print(python_version())

Check out the Python certification course, from Intellipaat, and become a certified professional in Python through its, dedicated training course and guided projects, which are aimed at making you practically skilled. And also have a look at our YouTube video on Python Features to get a better idea of how to make the most of Python.

Browse Categories

...