❓ Quiz Python
Que retourne cette fonction ?
PYTHONDebutantfonctions
20
quiz.py
1
def f(x, y=5):2
return x * y3
4
print(f(2))Que retourne cette fonction ?
def f(x, y=5): return x * y print(f(2))