python version jupyter code example
Example 1: get python version jupyter
from platform import python_version
print(python_version())
Example 2: install jupyter notebook
conda install -c conda-forge notebook
Example 3: find python version in jupyter notebook
from platform import python_version
print(python_version())