Python的os命令将值打印到控制台上。

13 浏览
0 Comments

Python的os命令将值打印到控制台上。

这个问题已经有了答案

在Python中,获得系统命令的输出字符串[duplicate]

for i in default_proxy_config_data:
        command = "command get %s" % i
        actual_ats_value = os.system(command)

我本来期望变量会得到这个命令的输出。但是当我运行脚本时,它却打印出了命令的值。

config.exec_thread.limit: 2
config.exec_thread.autoconfig: 1
config.accept_threads: 1

admin 更改状态以发布 2023年5月22日
0
0 Comments

系统返回终止状态。下面的代码有帮助。

tmp = os.popen("ls").read()

感谢帮助。

0