def maximum(tableau): tmp = tableau[0] for i in range(......): # à compléter if tableau[i] > tmp: tmp = tableau[i] return tmp