python关闭 os.popen()的方法

Posted 只宅不技术

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python关闭 os.popen()的方法相关的知识,希望对你有一定的参考价值。

cmd = os.popen(adb shell dumpsys activity|findstr mFocus).read()

执行上述代码后会os.popen后台并不会结束

需要改为

cmd = os.popen(adb shell dumpsys activity|findstr mFocus)
data = cmd.read()
cmd.close()

 

以上是关于python关闭 os.popen()的方法的主要内容,如果未能解决你的问题,请参考以下文章

Python执行系统命令的方法 os.system(),os.popen(),commands

Python之os.popen和os.system

python os.system、os.popen、subprocess.Popen的区别

python os.popen 出错

python os.system()和os.popen()

Python面试高频问题: os.system()和os.popen()的区别