gpt4 book ai didi

python - "SyntaxError: non-keyword arg after keyword arg"Python 在使用 requests.post() 时出错

转载 作者:太空狗 更新时间:2023-10-29 21:16:48 28 4
gpt4 key购买 nike

response = requests.post("http://api.bf3stats.com/pc/player/", data = player, opt)

在 python IDLE 中运行此行以测试事物后,我遇到了语法错误:关键字 arg 之后的非关键字 arg。

不知道这里发生了什么。

playeropt 是包含单字串的变量。

最佳答案

尝试:

response = requests.post("http://api.bf3stats.com/pc/player/", opt, data=player)

您不能在关键字参数之后放置非关键字参数。

查看 http://docs.python.org/2.7/tutorial/controlflow.html?highlight=keyword%20args#keyword-arguments 上的文档了解更多信息。

关于python - "SyntaxError: non-keyword arg after keyword arg"Python 在使用 requests.post() 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15723294/

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