Quand je compile le code Python ci-dessous, j'obtiens
IndentationError: unindent ne correspond pas à l'extérieur niveau d'indentation
import sys
def Factorial(n): # Return factorial
result = 0
for i in range (1,n):
result = result * i
print "factorial is ",result
return result
Pourquoi?