[Error, Python] IndentationError: unexpected indent

박미영·2023년 3월 29일
0

ErrorCode, WarningCode

목록 보기
2/5

⚠️Error code

IndentationError: unexpected indent



📌ERROR 발생 위치

Jupyter notebook에서 데이터 프레임 생성할 때 에러가 발생했다.

 left = pd.DataFrame({
    "key": ["K0", "K4", "K2", "K3"],
    "A":  ["A0", "A1", "A2", "A3"],
    "B":  ["B0", "B1", "B2", "B3"]
})
left



💡ERROR 원인

들여쓰기가 달라서 발생하는 ERROR



💡ERROR 해결

파이썬 문법에 맞게 들여쓰기를 잘 해주면 해결된다.

left = pd.DataFrame({
    "key": ["K0", "K4", "K2", "K3"],
    "A":  ["A0", "A1", "A2", "A3"],
    "B":  ["B0", "B1", "B2", "B3"]
})
left

0개의 댓글