python [a] * b signifie [a, a, ... b fois] v2

>>> [1, 2, 3] * 3
[1, 2, 3, 1, 2, 3, 1, 2, 3]
ap_Cooperative_dev