Slicing
20s

Que retourne ce slicing ?

x = [1, 2, 3] * 2
y = x[::2]
z = sum(y)
print(z)