how to know what versions of python i have code example
Example 1: terminal python version
# in python
$ python --version
# in python3
$ python3 --version
Example 2: python version command notebook
import platform
print(platform.python_version())