如何使用python在windows中获取cpu的模型名称

时间:2017-12-19 12:09:34

标签: python

是否有使用python获取cpu的型号名称?

我的代码在Linux中提供了型号名称,但我想在Windows中使用型号名称。

with open('/proc/cpuinfo') as f:
    for line in f:
       # Ignore the blank line separating the information between
       # details about two processing units
       if line.strip():
           if line.rstrip('\n').startswith('model name'):
               model_name = line.rstrip('\n').split(':')[1]
               model=model_name
               model=model.strip()
               break
print(model)

请帮帮我?

1 个答案:

答案 0 :(得分:0)

platform.processor()函数将处理器名称作为字符串返回。

>>> import platform
>>> platform.processor()
'Intel64 Family 6 Model 23 Stepping 6, GenuineIntel'