python 输出cpu占用率和内存占用率
时间: 2024-02-04 16:02:30 浏览: 230
SystemInfo_20210909.rar
可以使用 Python 中的 psutil 模块来获取 CPU 占用率和内存占用率。以下是示例代码:
```python
import psutil
# 获取 CPU 占用率
cpu_percent = psutil.cpu_percent(interval=1)
print(f"CPU 占用率: {cpu_percent}%")
# 获取内存占用率
mem = psutil.virtual_memory()
mem_percent = mem.percent
print(f"内存占用率: {mem_percent}%")
```
其中,`interval` 参数表示获取 CPU 占用率的时间间隔,单位为秒。在本例中,我们设置为 1 秒钟。`psutil.virtual_memory()` 函数返回一个包含当前内存使用情况的对象,我们可以通过 `percent` 属性获取内存占用率。
阅读全文