摘要:
os.system的结果只是命令执行结果的返回值,执行成功为0: >>> a=os.system('adb devices')>>> a0可以看到,a为0但用os.popen就可以读出执行的内容,popen返回的是file read的对象,对其进行读取使用read(),就可看到执行的输出: >>> 阅读全文
摘要:
上代码 1 ##获取设备多台设备号列表 2 def get_deviceid(): 3 str_init=' ' 4 all_info= os.popen('adb devices').readlines() 5 print('adb devices 输出的内容是:',all_info) 6 7 for i in range(len(all_inf... 阅读全文