gpt4 book ai didi

python - <这时候出乎意料

转载 作者:行者123 更新时间:2023-11-28 18:42:12 25 4
gpt4 key购买 nike

我在 cmd 中运行以下 python 脚本时遇到错误,当我在 cmd 中单独运行该命令时,它运行得非常好。我不确定是什么导致了这个问题。

错误是:< was unexpected at this time

command = "confluence --action storePage --space 'EN' --title 'csoap-235' --parent '@home' --special ' # ~' --content '<p><ac:link><ri:page ri:content-title=~Home~/></ac:link></p>' --noConvert --server 'server' --user 'username' --password 'pswd'" 
os.system(command)
print "This happened"

如有任何帮助,我们将不胜感激!

最佳答案

对不起,我对python一无所知,但在cmd你的引号有问题。更改命令中的引号以使用双引号而不是单引号。单引号在 cmd 中不被识别为有效引号,因此,字符 <>在您的命令中从带引号的字符串中找到并被视为命令的一部分,即重定向

command = r'confluence --action storePage --space "EN" --title "csoap-235" --parent "@home" --special " # ~" --content "<p><ac:link><ri:page ri:content-title=~Home~/></ac:link></p>" --noConvert --server "server" --user "username" --password "pswd"' 
os.system(command)
print "This happened"

未测试,根据文档/示例编写。

关于python - <这时候出乎意料,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24857944/

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