lxml python 2.5 ElementMaker语法错误

发布于 2024-10-22 22:28:59 字数 372 浏览 1 评论 0原文

我有以下代码:

from lxml.builder import ElementMaker
E = ElementMaker()
params = [E.param('1'), E.param('2')]
E.p( *params, count='2')

这在 python 2.6 中工作正常,但是当我使用 python 2.5 运行它时,出现以下错误:

Ep( *params, count='2')
                  ^ 语法错误:语法无效

我不明白为什么会发生这种情况。为什么2.5会抛出这个错误?我该如何修复它?

I have the following code:

from lxml.builder import ElementMaker
E = ElementMaker()
params = [E.param('1'), E.param('2')]
E.p( *params, count='2')

This works fine in python 2.6, but when I run it with python 2.5, I get the following error:

E.p( *params, count='2')
                  ^ SyntaxError: invalid syntax

I can't figure out why this is happening. Why does 2.5 throw this error? How can I fix it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ら栖息 2024-10-29 22:28:59

在 Python 中,* 后面不能带有关键字参数 2.6 之前。您可以尝试:

E.p(*params, **{'count': '2'})

或者如果您愿意:

E.p(*params, **dict(count='2')})

You can't follow * with keyword arguments in Python before 2.6. You can try:

E.p(*params, **{'count': '2'})

or if you'd rather:

E.p(*params, **dict(count='2')})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文