✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Qu'affiche le code suivant ?
def change(liste): liste = ["vert", "jaune"] liste[0] = "noir" couleurs = ["Bleu", "Blanc", "Rouge"] change(couleurs) print(couleurs)