ラムダ式は小規模で名前を持たない関数を簡潔に記述するのに使える。その記述方法や使う上で注意すべきポイントを紹介する。 # 関数やメソッドの引数にラムダ式を指定 int_list = [8, 4, -10, 6, -5, -7, -8] int_list.sort(key=lambda x: x if x >= 0 else -x) print(int_list) # [4, -5, 6, -7, 8, -8, -10] d = { 'kawasaki': {'age': 100, 'height': 129, 'weight': 129}, 'isshiki': {'age': 25, 'height': 180, 'weight': 68}, 'endo': {'age': 34, 'height': 176, 'weight': 72} } result = sorted(d.ite