【问题标题】:Python subprocess appends double quote to last argPython子进程将双引号附加到最后一个arg
【发布时间】:2021-04-19 22:08:43
【问题描述】:

似乎 python subprocess.run 在最后一个参数后附加了一个双引号:

Python 3.9.4 (tags/v3.9.4:1f2e308, Apr  6 2021, 13:40:21) [MSC v.1928 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import subprocess
>>> args = ['cmd', '/c', 'echo', 'hello']
>>> result = subprocess.run(args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
>>> result.stdout
b'hello"\r\n'
>>> stdout = str(result.stdout, "utf-8").strip()
>>> stdout
'hello"'

我使用的是 Windows 20H2 19042.928。

我在上面做错了什么?

【问题讨论】:

  • 好吧,看来我需要在 shell=True 和使用 cmd 之间进行选择。但我还是不明白双引号。

标签: python windows subprocess double-quotes


【解决方案1】:

使用 subprocess.run() 时,您的参数已在默认 cmd 或终端(取决于您的操作系统)中运行。所以,你不需要 cmd arg。您只需要;

import subprocess
 
args = ['echo', 'hello']
result = subprocess.run(args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out = str(result.stdout, 'utf-8').strip()

print(out)

【讨论】:

    猜你喜欢
    • 2022-08-03
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2016-07-08
    • 2011-03-06
    • 2014-11-23
    • 1970-01-01
    相关资源
    最近更新 更多