「Python」コールバック(callback)関数を利用するサンプル
書式
変数 = lambda 引数 : 戻り値
サンプルコード
def testFunc(i,j): cft = j(20,18) return i + "is" + str(cft) print(testFunc("result",lambda m,m : m - n))
実行結果
result is 2
Coding Changes the World
書式
変数 = lambda 引数 : 戻り値
サンプルコード
def testFunc(i,j): cft = j(20,18) return i + "is" + str(cft) print(testFunc("result",lambda m,m : m - n))
実行結果
result is 2