Python [a]*b berarti [a, a, ... b kali] v2

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