Answers for "how to check python version in notebook"

5

python print version

import sys
print(sys.version)
Posted by: Guest on April-15-2020
2

python version command notebook

import platform
print(platform.python_version())
Posted by: Guest on May-09-2020
0

find python version in jupyter notebook

from platform import python_version

print(python_version())
Posted by: Guest on January-08-2021

Code answers related to "how to check python version in notebook"

Python Answers by Framework

Browse Popular Code Answers by Language