日々精進

新しく学んだことを書き留めていきます

Pythonのlambdaのtype hint

すべての箇所でtype hintを書きたい人なので、lambdaを代入した変数にもtype hintが欲しい、、となりやり方を探した。 以下のようにLambdaType 型として扱えば良い。

x: types.LambdaType = lambda x: print(x)

参考:

stackoverflow.com