我正在尝试将 psutil.test() 写入文件,但我无法让它工作。有没有办法做到这一点?
这是我使用的代码:
import psutil
import tkMessageBox
def Sysinfo():
test = psutil.test()
tkMessageBox.showinfo(title='testing',message=test)
FILE = open("sysinfo.txt","w")
FILE.write(str(test))
FILE.close()
Sysinfo()
该文件包含“无”行。
在提示 psutils.test() 显示:
用户 PID %CPU %MEM VSZ RSS TTY 开始时间命令 root 1 0.0 0.1 3532 1944 ? 14:23 00:00 初始化根 2 0.0 ?? ? ? 14:23 00:00 kthreadd root 3 0.0 ? ? ? ? 14:23 00:00 ksoftirqd/0 根 5 0.0 ?? ? ? 14:23 00:00 kworker/u:0 root 6 0.0 ? ? ? ? 14:23 00:00 迁移/0 等等。