2022-2023/1NSI/Evaluations/DS_2023-03-31/annexes/QCM_maxi.py

8 lines
187 B
Python
Raw Normal View History

2023-03-30 16:42:50 +00:00
def maxi(L):
dernier_indice = len(L) - 1
valeur_max = L[0]
for i in range(1,dernier_indice):
if L[i] > valeur_max:
2023-03-31 12:19:53 +00:00
valeur_max = L[i]
2023-03-30 16:42:50 +00:00
return valeur_max