python version in python code example
Example 1: python print version
import sys
print(sys.version)
Example 2: check python version
# To check Python version
python -V
----or----
python --version
Example 3: python version
python ––version
import sys
print(sys.version)
# To check Python version
python -V
----or----
python --version
python ––version