我的系统出了什么问题,无法解压字典。有 unicode 对象吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
似乎与这个(非)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 ;)