「Python」無名関数のサンプル
書式
lambda 変数名:変数名+式
使用例
# coding: utf-8 res = lambda x : x + " 123" print(res("log"))
実行結果
>python test.py
log 123
Coding Changes the World
書式
lambda 変数名:変数名+式
使用例
# coding: utf-8 res = lambda x : x + " 123" print(res("log"))
実行結果
>python test.py
log 123