lspci 是个linux 命令,可以用python 的os.popen/os.system/subprocess 等更使用系统shell
举个栗子:
import os
#os.system
os.system("lspci")
#os.popen
os.popen("lspci").read()
Python 跟shell 沟通有很多种方式, 可以多查查pydoc。 希望有帮助
lspci 是个linux 命令,可以用python 的os.popen/os.system/subprocess 等更使用系统shell
举个栗子:
import os
#os.system
os.system("lspci")
#os.popen
os.popen("lspci").read()
Python 跟shell 沟通有很多种方式, 可以多查查pydoc。 希望有帮助