Bonjour,
1)
def recherche(tab, n):
indice = -1
i = 0
for t in tab :
if n == t:
indice = i
i = i + 1
return indice
2) Bon alors il faudrait saisir le principe de programme PERSONNEL mais bon:
def recherche(tab,n):
for i in range(len(tab)+1):
if tab[i] == n:
return i
return (-1)
PS: hésite pas à demander si tu ne comprends pas ma démarche
Bonne journée