gpt4 book ai didi

python - 如何在 Python 中获取处理器名称?

转载 作者:可可西里 更新时间:2023-11-01 09:20:39 24 4
gpt4 key购买 nike

在我的 Windows 笔记本电脑上使用 Python 中的平台模块,我得到以下输出

import platform
platform.processor()

'Intel64 Family 6 Model 58 Stepping 9, GenuineIntel'

但是,如果我查看 Windows 系统信息,系统会告诉我我的处理器是 1.70Ghz 的 Intel Core i5-3317U CPU。如何让 Python 以这种格式返回处理器信息?

最佳答案

通过一些 com 接口(interface) pywin32你可以:

def get_cpu_type():
from win32com.client import GetObject
root_winmgmts = GetObject("winmgmts:root\cimv2")
cpus = root_winmgmts.ExecQuery("Select * from Win32_Processor")
return cpus[0].Name

我机器上的结果:

Intel(R) Xeon(R) CPU W3550 @ 3.07GHz

您还可以通过这种方式获取有关 CPU 的各种信息。看这个MSDN article

关于python - 如何在 Python 中获取处理器名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19185632/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com