❓ Quiz Python

Que retourne cette fonction ?

PYTHONDebutantslicing
20
quiz.py
1
x = [10, 20, 30]
2
y = x[:]
3
y[0] = 99
4
print(x)