도와주세요! IndentationError: unindent does not match any outer indentation level

조회수 38236회

발생하는 문제 및 실행환경

이 코드를 실행하면 에러가 뜹니다 ㅜㅜ 왤까요?

소스코드

import sys

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

에러내용

IndentationError: unindent does not match any outer indentation level

1 답변

답변을 하려면 로그인이 필요합니다.

프로그래머스 커뮤니티는 개발자들을 위한 Q&A 서비스입니다. 로그인해야 답변을 작성하실 수 있습니다.

(ಠ_ಠ)
(ಠ‿ಠ)