❓ Quiz Python

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

PYTHONDebutantlistes
20
quiz.py
1
a = (1, 2, [3, 4]) a[2].append(5) print(a)