Check the Version of the Python Interpreter
You can use the sys library in order to check the version of your Python Interpreter: Copy import sysprint(sys.version) Here is an example of a version of the Python Interpreter: Get the components of your version If you want to get the components of your version, you may use: Copy import sysprint(sys.version_info) For our example, … Read more