❓ Quiz Python

Que va afficher ce code ?

PYTHONDebutantfonctions
20
quiz.py
1
def add_item(item, items=[]):
2
    items.append(item)
3
    return items
4
 
5
print(add_item(1))
6
print(add_item(2))