When I compile the Python 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

Why?

link|improve this question

I fixed some indentation in SO, not sure why it isn't looking properly in edit mode(?) – cbrulak Jan 29 '09 at 16:37
2  
If you won't change the 'result = 0' to 'result = 1', your factorial won't be... well... accurate :-) – Abgan Jan 29 '09 at 16:45
1  
and probably range(1, n+1) will be better, if you want to include 'n' in your computation :-) – Abgan Jan 29 '09 at 16:46
My $0.02 , try out sourceforge.net/projects/spe. Its a very nice free, python centric dev environment. It helped me forget this error. – Perpetualcoder Jan 29 '09 at 17:39
feedback

5 Answers

up vote 23 down vote accepted

EDIT: Other posters are probably correct...there might be spaces mixed in with your tabs. Try doing a search&replace to replace all tabs with a few spaces.

Try this:

import sys

def Factorial(n): # return factorial
    result = 1
    for i in range (1,n):
        result = result * i
    print "factorial is ",result
    return result

print Factorial(10)
link|improve this answer
yeah, I had to really space over the inner loop part at the last two lines (in SO only). Not sure why... – cbrulak Jan 29 '09 at 16:40
my first line, "result = 0" (which should ahve been 1, thanks for correcting) was spaced while the rest was tabbed, darn, didn't know python was like that – cbrulak Jan 29 '09 at 16:44
Yeah, that can be tricky. I use emacs to edit python, and I have it setup to always replace tabs with spaces in py files so I don't have this problem. Notepad++ might have an option like this as well. – Kevin Tighe Jan 29 '09 at 16:49
feedback

To easily check for problems with tabs/spaces you can actually do this:

python -m tabnanny yourfile.py

or you can just set up your editor correctly of course :-)

link|improve this answer
I tried this in a file with some tab/space indentation error, but no output at all with an incorrect tab file. any idea? – Luchux Mar 16 at 3:32
feedback

Are you sure you are not mixing tabs and spaces in your indentation white space? (That will cause that error.)

Note, it is recommended that you don't use tabs in Python code. See the style guide. You should configure Notepad++ to insert spaces for tabs.

link|improve this answer
feedback

Whenever I've encountered this error, it's because I've somehow mixed up tabs and spaces in my editor.

link|improve this answer
feedback

The line: result = result * i should be indented (it is the body of the for-loop).

Or - you have mixed space and tab characters

link|improve this answer
I had to change the editing in SO, strange. See my updated "Edit" note in the question – cbrulak Jan 29 '09 at 16:41
Ok, so I believe that second line of my answer is correct - you have mixed space and tab characters (32 and 8 in ASCII, respectively) – Abgan Jan 29 '09 at 16:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.