import subprocess
while True:
subprocess.call(input("> "), shell=True)
字符串
比如说,当我运行adb shell settings get system volume_music_speaker
时,我如何获得控制台输出并存储它,比如说,它是最大音量,因此返回值为14。我已经尝试过了
while True:
a = subprocess.call(input("> "), shell=True)
print(a)
型
但我总是得0分,谢谢
1条答案
按热度按时间uqzxnwby1#
https://docs.python.org/3/library/subprocess.html#subprocess.PIPE
字符串