❓ Quiz Python

Combien d'itérations cette boucle effectue-t-elle ?

PYTHONDebutantlistes
20
quiz.py
1
import copy
2
 
3
x = [[1, 2, 3], [4, 5, 6]]
4
y = copy.deepcopy(x)
5
y[1].append(7)
6
print(x, y)