Réponse :
Explications :
Exercice 2
Programme Python
from math import *
#Définition de la fonction
def f(x):
return sqrt(9-x)
#On affiche le tableau de valeurs
for x in range(0,10):
print(x," ",f(x))
Résultats