python脚本执⾏CMD命令并返回结果的例⼦
最近写脚本的时想要⽤python直接在脚本中去执⾏cmd命令,并且将返回值打印出来供下⾯调⽤,所以特意查了下,发现主要有⼀下⼏种⽅式来实现,很简单:
就拿执⾏adb, adb shell, adb devices 举例
1.第⼀种⽅法 os 模块的 os.sysytem()
import os
os.system('adb)
执⾏括号中系统命令,没有返回值
2.第⼆种⽅法:os模块的 os.popen()
if __name__=='__main__':
import os
a = os.popen('adb')
#此时打开的a是⼀个对象,如果直接打印的话是对象内存地址
text = a.read()
#要⽤read()⽅法读取后才是⽂本对象
print(text)
a.close()#打印后还需将对象关闭
#下⾯执⾏adb devices同理
b = os.popen('adb devices')
text2 = b.read()
print(text2)
b.close()
下⾯是第⼆种⽅法的打印结果:
#adb返回的结果:
Android Debug Bridge version 1.0.40
Version 4986621
Installed as D:\androidsdk\
global options:
-a  listen on all network interfaces, not just localhostpython怎么读取桌面上的文件
-d  use USB device (error if multiple devices connected)
-e  use TCP/IP device (error if multiple TCP/IP devices available)
-s SERIAL use device with given serial (overrides $ANDROID_SERIAL)
-t ID  use device with given transport id
-H  name of adb server host [default=localhost]
-
P  port of adb server [default=5037]
-L SOCKET listen on given socket for adb server [default=tcp:localhost:5037]
general commands:
devices [-l]    list connected devices (-l for long output)
help      show this help message
version    show version num
#adb devices 返回的结果:
List of devices attached
740dc3d1 device
未完待续....
以下内容为2019年5⽉更新
os.popen⽅法较os.system()⽽⾔是获取控制台输出的内容,那就⽤os.popen的⽅法了,popen返回的是⼀个file对象,跟open打开⽂件⼀样操作了,r是以读的⽅式打开,今天把写法优化了⼀下:
# coding:utf-8
import os
# popen返回⽂件对象,跟open操作⼀样
with os.popen(r'adb devices', 'r') as f:
text = f.read()
print(text) # 打印cmd输出结果
# 输出结果字符串处理
s = text.split("\n") # 切割换⾏
result = [x for x in s if x != ''] # 列⽣成式去掉空
print(result)
# 可能有多个⼿机设备
devices = [] # 获取设备名称
for i in result:
dev = i .split("\tdevice")
if len(dev) >= 2:
devices.append(dev[0])
if not devices:
print('当前设备未连接上')
else:
print('当前连接设备:%s' % devices)
控制台输出如下:
以上这篇python脚本执⾏CMD命令并返回结果的例⼦就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。