How can I check what version of the Python Interpreter is interpreting my script?
Use platform's python_version from the stdlib:
>>> from platform import python_version >>> print(python_version()) 2.7.8