"test.py" "a" "b" "-6ren">
gpt4 book ai didi

python - 在 Windows 上的 os.system 中转义双引号

转载 作者:可可西里 更新时间:2023-11-01 14:43:17 25 4
gpt4 key购买 nike

我想在程序名称和参数中转义 '"' 和所有其他的野生字符,所以我尝试用双引号将它们引起来。我可以在 cmd.exe 中执行此操作

C:\bay\test\go>"test.py" "a" "b"  "c"
hello
['C:\\bay\\test\\go\\test.py', 'a', 'b', 'c']

但是下面使用 os.sytem 的代码有什么问题?

cmd = '"test.py" "a" "b" "c"'
print cmd
os.system(cmd)

它的输出:

C:\bay\test\go>test2.py
"test.py" "a" "b" "c"
'test.py" "a" "b" "c' is not recognized as an internal or external command,
operable program or batch file.

为什么整个字符串 '"test.py""a""b""c"' 被识别为单个命令?但下面的例子不是:

cmd = 'test.py a b c'
print cmd
os.system(cmd)

C:\bay\test\go>test2.py
test.py a b c
hello
['C:\\bay\\test\\go\\test.py', 'a', 'b', 'c']

谢谢!

最佳答案

进一步谷歌来到这个页面

http://ss64.com/nt/syntax-esc.html

To launch a batch script which itself requires "quotes" 
CMD /k ""c:\batch files\test.cmd" "Parameter 1 with space" "Parameter2 with space""

cmd = '""test.py""a""b""c""' 确实有效!

关于python - 在 Windows 上的 os.system 中转义双引号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1912818/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com