❓ Quiz Python

Que retourne cette fonction ?

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