码迷,mamicode.com
首页 > 编程语言 > 详细

【python】关闭 os.popen()的方法

时间:2020-05-22 21:34:47      阅读:314      评论:0      收藏:0      [点我收藏+]

标签:style   方法   open   activity   pen   shel   find   bsp   pytho   

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()的方法

标签:style   方法   open   activity   pen   shel   find   bsp   pytho   

原文地址:https://www.cnblogs.com/ffrs/p/12939683.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!