gpt4 book ai didi

python 如何观察wmi中Win32_Processor LoadPercentage的变化?

转载 作者:行者123 更新时间:2023-12-01 06:12:24 29 4
gpt4 key购买 nike

如何使用 Win32_Processor 类监视 LoadPercentage 更改事件?

import wmi
c= wmi.WMI()
x = [cpu.LoadPercentage for cpu in c.Win32_Processor()]

应该在哪里应用 watch for() 方法,以便我知道 CPU 使用率是否已降至 80% 以下?

谢谢。湿婆

最佳答案

我不确定 for() 方法是什么意思,但你可以将其放入循环中:

kMaxLoad = 80
while True:
x = [cpu.LoadPercentage for cpu in c.Win32_Processor()]
if max(x) < kMaxLoad:
break
print "okay, load is under %i" % kMaxLoad

关于python 如何观察wmi中Win32_Processor LoadPercentage的变化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5078960/

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