❓ Quiz Python

Ce code lève-t-il une erreur ?

PYTHONDebutantfonctions
20
quiz.py
1
def f(x=[]):
2
    x.append(1)
3
    return x
4
 
5
print(f(), f())