Python3 – map関数
基本構文
map([適用関数], [対象リスト])
リストに一斉に処理を実行したい際に使用する。
サンプルコード
def sample_def(num):
return num * num
number_list = [0, 1, 2, 3]
print(list(map(sample_def, number_list)))
print(list(map(lambda x: x*x, number_list)))
# どちらも[0, 1, 4, 9]