본문 바로가기
Error & Fix

파이썬 IndexError: list index out of range 해결방법

by wakestand 2020. 1. 13.
반응형

파이썬에서 리스트를 만들고 실행 시 

 

Traceback (most recent call last):
  File "C:/Users/MyRealm/PycharmProjects/untitled/ListExample.py", line 3, in 
    print(listVariable[5])
IndexError: list index out of range

Process finished with exit code 1

 

이런 에러가 뜨는 것이 보이는데

IndexError: list index out of range 에러는

list 범위 밖에 있는 인덱스를 가져오려고 해서 에러가 난 것이다

 

listVariable에는 9, 1, 3, 4가 들어있는데

리스트의 인덱스는 0부터 시작하기 때문에

0, 1, 2, 3까지 있는데

5번째 인덱스를 가져오라고 하니 에러가 난 것이다

 

반응형

댓글