Notice that lambda x: x**2 is not given a label. This is because we probably won't call it again later, it was just something short and simple we needed temporarily.
不需要给 lambda 函数命名的事实是描述它们的另一个名称的来源: “匿名函数”
Also note that lambda-statements are like a function-call in that they return a reference to the function they create. The following is illegal: