Unexpected indent

Hi
I’m trying to solve a problem with identation error but I can’t do it.
For each line, there is an error… :sob:
Please help !
Thanks

def ma_fonction(n):
	n = n + 1
	print("n=", n)
	print(1)
	print(1, 1)
	liste = [1, 1]
	for x in range(2, n):
		if x%2 == 0:
            #Si x est pair, la ligne comporte un nombre impair de chiffres
            print("x est pair")
            a = liste[x-2]
            b = liste[x-1]
            nouveau_nombre = a + b
            print("a=", a)
            print("b=", b)
            print("le nouveau nombre est ", nouveau_nombre)
            liste[x-1] = nouveau_nombre
            liste.append(1)
            print(liste)

I see tabulations from def to if, then spaces.

1 Like

Replace every tabulation by at 4 spaces. Finally it will be the same.
(En python, une tabulation est remplacée par 4 espaces pour visiblité mais en réalité tu peux remplacer par un nombre d’espaces que tu veux)

1 Like

thanks for the solution !