반응형

IndentationError 5

IndentationError: unexpected indent

파이썬에서 들여쓰기는 항상 중요합니다 그래서 파이썬에서 들여쓰기의 레벨 수준이 맞지 않을 경우 IndentationError: unexpected indent 에러가 발생합니다. 들여쓰기 수준 불일치문제 코드:if True: print("First line") print("Second line") 오류 메시지:IndentationError: unexpected indent 해결 방법: 들여쓰기는 일정한 간격(보통 공백 4칸)으로 일관되게 유지해야 합니다. if True: print("First line") print("Second line")  위 처럼 if 문에서 True뒤의 print문은 같은 레벨의 수준이기 때문에 같은 들여쓰기 수준을 유지해줘야 합니다. #indentati..

IndentationError: expected an indented block

파이썬에서 들여쓰기를 하지 않는 경우 IndentationError: expected an indented block 와 같은 에러가 나타납니다  들여쓰기가 없는 경우문제 코드:def greet():print("Hello, World!") 오류 메시지:IndentationError: expected an indented block 해결 방법: 함수 블록 안의 코드는 들여쓰기를 사용해야 합니다.def greet(): print("Hello, World!")  위와 같이 들여쓰기를 잘못 했을 경우 해당 들여쓰기를 해주게 되면 해당 오류는 없어지게 됩니다 #python #error #debug #indentatioinError #파이썬 #에러

1
반응형