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。

我在上面做错了什么?

解决方法

在使用 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)

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...