❓ Quiz Python
Que va afficher ce code ?
PYTHONDebutanttuples
20
quiz.py
1
Que va afficher ce code sur les types immuables et mutables ? python a = (1, 2, 3) b = (1, 2, 3) print(a == b) print(a is b)