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