Programmation: Fonctions Question 1 Qu'affiche le programme python suivant ? def f(x): if (x>=-1): y=x**2-1 else: y=3*x+4 return y print(f(-5)) 3*x+4 24 -11 f(-5) Voir Fonctions en Python Index des QCM python