## 原来的写法 def test(a): return *= a test(10) # 打印 100 # 简写 这就是匿名函数 data = lambda a : a * a data(5) # 打印 25