lambda匿名函数使用

#!/usr/bin/python
fun=lambda x:x*x-x
print fun(3)
      
原文地址:https://www.cnblogs.com/djcsch2001/p/2025934.html