Bonjour,
la fonction minimum compare 2 nombres: a et b
Si a > b alors la fonction renvoie b et si a < b alors la fonction renvoie a
donc
def minimum(a,b):
if a < b:
return a
else :
return b
return signifie "retourne" et le esle veut dire dire sinon cela fait:
si a est inférieur à b alors renvoyer a sinon renvoyer b
BOnne journée :D