how to check python interpreter version code example
Example 1: get python version in code
import platform
print(platform.python_version())
Example 2: how to check python version
python --version
import platform
print(platform.python_version())
python --version