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