Correction 1 2 3 4 5 6def maxliste(tab): maximum = tab[0] for element in tab: if element > maximum: maximum = element return maximum