我的系统出了什么问题,无法解压字典。有 unicode 对象吗?

发布于 2024-10-02 23:01:41 字数 477 浏览 5 评论 0原文

In [1]: l1 = lambda *args, **kw: args

In [2]: l1(**{'name':'hello'})
Out[2]: ()

In [3]: l1(**{u'name':'hello'})
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)

/home/sma/<ipython console> in <module>()

我的 Python 遇到一些问题,无法将字典元素传递/解压到函数...可能是我的 python 已损坏或系统已损坏,不知道,但这很奇怪

我正在使用 Ubuntu 9.04 上的 python 2.6.2 Jaunty Jacob

In [1]: l1 = lambda *args, **kw: args

In [2]: l1(**{'name':'hello'})
Out[2]: ()

In [3]: l1(**{u'name':'hello'})
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)

/home/sma/<ipython console> in <module>()

I've some problem with Python unable to pass/unpack the dictionary elements to the functions... might be my python is corrupted or system is broken don't know but this is strange

I'm using
python 2.6.2 on Ubuntu 9.04 Jaunty Jacob

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

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

发布评论

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

评论(1

人生百味 2024-10-09 23:01:41

似乎与这个(非)bug(旧)有关,但甚至还有更多 错误报告< /a> 似乎确实只从 2.6.5 开始修复。

这就是我发现的全部内容,我对 Python 没有更多的了解来解释如何或为什么;)

Seems to be related with this (non-)bug (old), but there are even more bug reports and it really seems to be fixed from 2.6.5 on only.

That is all I found and I don't have more insight into Python to explain how or why ;)

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