# File name: version_used.py
# This prints the version of Python being used by the Code Runner extension in VSCodium
# Set by going to: File -> Preferences -> Settings -> Search Settings -> code-runner.executorMap -> Edit in settings.json
# “python”: “/bin/python3.9 -u”,\
# To run this script press the little play button on the top right in the editor
import sys
print(sys.version)