Please note I'm not asking "how to check which version of Python did I install".
I've installed several versions of Pythons on my Windows computer, for example Python 2.7-64, Python 2.7-32, and Python 3.7-32.
Python 3 includes "py" and "pyw" which helps me to easily start different Pythons, for example:
- "py -2.7" starts Python 2.7-64
- "py -2.7-32" starts Python 2.7-32
- "py -3.7-32" starts Python 3.7-32
What I'm wondering is, how to check how many different versions of Python did I install on my Windows PC and what versions are they?
PyCharm is able to find it but, for one thing, I don't know if it is a complete list, and for another, I wonder if there is any tool provided by Python or the operating system can do it.