作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何使用 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/
我在 firebug 上收到以下错误: this._processor is null 错误来自下面的文件,它似乎是 Firefox 的默认组件,但我也不知道它的用途。 file:///Applica
我是一名优秀的程序员,十分优秀!