Correction

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