いわゆる無名関数。変数に代入して使う。
hello = lambda name: "Hello, " + name + "." print(hello("Andy"))
実行結果:
^o^ > python lambda.py Hello, Andy.