python lambda 用途 发表于 2014-12-22 | 分类于 Python | 可以让一个带参数函数,传递并以无参调用1234567891011def test(a): print aa=test#a()a=897987fun=lambda : test(a)fun()