find out python version jupyter notebook code example
Example 1: get python version jupyter
from platform import python_version
print(python_version())
Example 2: how to find python version
python --version
from platform import python_version
print(python_version())
python --version