❓ Quiz Python
Que contient la liste après ces opérations ?
PYTHONDebutantlistes
20
quiz.py
1
x = [[1, 2, 3], [4, 5, 6]]2
y = x.copy()3
y[1].append(7)4
print(x, y)Que contient la liste après ces opérations ?
x = [[1, 2, 3], [4, 5, 6]]y = x.copy()y[1].append(7)print(x, y)