首页 > 解决方案 > Python子进程将双引号附加到最后一个arg

问题描述

似乎 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。

我在上面做错了什么?

标签: pythonwindowssubprocessdouble-quotes

解决方案


使用 subprocess.run() 时,您的 args 已经在默认 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)

推荐阅读