❓ Quiz Python
Combien d'itérations cette boucle effectue-t-elle ?
PYTHONDebutantdictionnaires
20
quiz.py
1
d = {"a": 1, "b": 2, "c": 3}2
print("".join(d))Combien d'itérations cette boucle effectue-t-elle ?
d = {"a": 1, "b": 2, "c": 3}print("".join(d))