❓ Quiz Python

Que retourne cette fonction ?

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