我遇到了一些方法来实现搜索以获取操作系统上所有已安装应用程序的列表,可能会有问题是有没有办法随机执行其中一些应用程序或列表的前3个?
import wmi
PATTERN = r"\newcommand*{{\Title}}{{{}}}"
w = wmi.WMI()
for p in w.Win32_Product():
print (PATTERN.format(p.Version))
print (PATTERN.format(p.Vendor))
print (PATTERN.format(p.Caption))
print("\hline")
答案 0 :(得分:0)
获得程序路径后,可以使用Python中的<=n
模块执行该程序。例如,如果我在os
安装python.exe
,我可以运行:
C:/program files/python36/python.exe
它会打开Python。