🔒 IndexError: list assignment index out of range

🗝️ 빈 리스트에 인덱스를 지정하면 나오는 에러이다.

🔒 TypeError: 'str' object does not support item assignment

🗝️ 문자열에서 특정 문자를 변경하려고 할 때 발생하는 에러이다.
🧩 새 문자열을 만들거나 문자열을 리스트로 변경하여 특정 문자를 수정한 후 다시 문자열로 만들어준다.

🔒 IndentationError: unindent does not match any outer indentation level

🗝️ 들여쓰기가 잘못 되어 있을 때 발생하는 오류이다.

🔒 TypeError: Object of type dict_keys is not JSON serializable

🗝️ dict에서 keys(), values()를 하였을 때 발생하는 오류이다.
🧩 list()를 하여 리스트로 만들어준다.

🔒 TypeError: object of type 'int' has no len()

🗝️ 숫자의 길이를 구하려 했을 때 발생하는 오류이다.
🧩 숫자는 길이가 없다! → str으로 변환 후 구한다.

0개의 댓글