Correction 1 2 3 4 5def recherche(elt, tab): for i in range(len(tab)): if tab[i] == elt: return i return None