When I compile the code below, I get
IndentationError: unindent does not match any outer indentation level
import sys
def Factorial(n): # return factorial
result = 0
for i in range (1,n):
result = result * i
print "factorial is ",result
return result
Any ideas why?