C'est bon, j'ai trouvé la solution
!
[liste_de_listes = IN[0]
indices_max = []
for sous_liste in liste_de_listes :
max_nombre = float('-inf')
index_max = None
for i, nombre in enumerate(sous_liste) :
if nombre > max_nombre :
max_nombre = nombre
index_max = i
indices_max.append(index_max)
OUT = indices_max]