Python 命名参数是关键字?
因此,我正在使用的 API 的 Web POST 请求中预期的可选参数实际上也是 python 中的保留字。那么如何在方法调用中命名参数:
example.webrequest(x=1,y=1,z=1,from=1)
由于“from”是关键字,因此会失败并出现语法错误。我怎样才能以不会遇到语法错误的方式传递它?
So an optional parameter expected in the web POST request of an API I'm using is actually a reserved word in python too. So how do I name the param in my method call:
example.webrequest(x=1,y=1,z=1,from=1)
this fails with a syntax error due to 'from' being a keyword. How can I pass this in in such a way that no syntax error is encountered?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其作为字典传递。
Pass it as a dict.
// 不要使用该库
// dont use that library