How can I check what version of the Python Interpreter is interpreting my script?
A attempt using os.popen to read it in a variable:
os.popen
import os ver = os.popen('python -V').read().strip() print(ver)