如何使用Python识别Windows 10?

时间:2016-03-29 06:29:09

标签: python windows python-2.6

import platform 
if platform.release() == 'post2008Server' and platform.version() ==   '6.2.9200':
     print "It's windows 8"

之前我用过这个来识别Windows 8。 但它在Windows 10中返回相同的内容。那么有没有其他方法可以识别它?

1 个答案:

答案 0 :(得分:4)

使用以下Python版本,一切正常。

Python 3.5.1:

>>> import platform
>>> platform.release()
'10'
>>> platform.version()
'10.0.10240'

Python 2.7.11

>>> import platform
>>> platform.release()
'10'
>>> platform.version()
'10.0.10240'

如何升级到至少2.7.x?

编辑:正如@Rogalski所提到的,你总是可以管道ver命令,这应该独立于Python版本返回以下内容:

>>> import subprocess
>>> subprocess.Popen('ver', shell=True, stdout=subprocess.PIPE).communicate()[0]
'\r\nMicrosoft Windows [Version 10.0.10240]\r\n'