Pythonにおいて、リスト `numbers = [1, 2, 3]` から `[2, 4, 6]` を生成する `[x * 2 for x in numbers]` のような記述法を何と呼ぶか。

PythonはList Comprehension。