check which python version installed on your machine 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())