I want a program to determine which OS and its version is running on the computer.
I was really confused when platform.release()
returned '8' since my computer was originally running on windows 8 but I updated on windows 10 several months ago.
My guess would be that it is more of a windows issue than a python problem.
Is there a way o fix this? Or should I use a different module than platform
?
I am using python 3.4.3. The whole version name platform.platform()
returns is 'Windows-8-6.2.9200' but I can't tell whether it is the very first version on the computer or the last one before the Update.