是否有使用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)
请帮帮我?
答案 0 :(得分:0)
platform.processor()函数将处理器名称作为字符串返回。
>>> import platform
>>> platform.processor()
'Intel64 Family 6 Model 23 Stepping 6, GenuineIntel'