📌  相关文章
📜  如何在python代码示例中检查应用程序是否打开

📅  最后修改于: 2022-03-11 14:45:40.435000             🧑  作者: Mango

代码示例1
#Iterates through all the programs running in your system and checks for the one in the string
import psutil    
"someProgram" in (p.name() for p in psutil.process_iter())