반응형
파이썬에서 리스트를 만들고 실행 시
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번째 인덱스를 가져오라고 하니 에러가 난 것이다
반응형
'Error & Fix' 카테고리의 다른 글
파이썬 문자와 숫자 합쳐 출력하는 방법 (0) | 2020.01.19 |
---|---|
파이썬 ValueError: 값 is not in list 에러 해결방법 (0) | 2020.01.13 |
파이썬 Function call can be replaced with set literal 해결방법 (0) | 2020.01.07 |
파이썬 PEP 8: no newline at end of file 해결방법 (1) | 2020.01.07 |
파이참 Typo: In word '글자' 해결방법 (0) | 2020.01.06 |
댓글