「Python入門」Lambda(ラムダ式)のサンプル

2021年2月26日

書式
lambda 引数 : 表現式
使用例

funcA = lambda n: n + 15
print(funcA(5))

結果
20

Python

Posted by arkgame