Just quick post on how to check the precise version without having to open up Python.
In the case you need to know precisely which Python version is installed on your computer, you can easily check this without opening Python. This is for Windows btw. You can simply open up a cmd by going to the search icon in the task bar (next to the Windows start button), and then typing “cmd”. Open that up and simply type in the following:
python --version
The output should be “Python X.X.X”, where X represents a number that corresponds to the version of Python.
1