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 Jaunty Jacob 上使用 python 2.6.2