NSI : tp noté V2

Le code de la fonction de l’exercice 2 :

def separe(tab):
    i=0
    j = ...
    while i < j :
        if tab[i] == 0 :
            i = ...
        else :
            tab[i], tab[j] = ...
            j = ...
   return tab