Inflearn brand logo image

Inflearn Community Q&A

pearl0975380's profile image
pearl0975380

asked

Introduction to Python and Creating Various Automated Applications Using Web Crawling

BeautifulSoup usage and simple web parsing practice (2) - Naver, Inflearn

soup.select 에러

Written on

·

247

0

부모 함에서 에러가 발생합니다.

slides 부분에서 에러가 발생하는데, ul 태그 클래스 이름이 grid 으로 되어 있어 ul.grid 으로 변경했는데 IndexError: list index out of range 라는 에러가 발생하군요 ㅠㅠ

python웹-크롤링

Answer 1

0

niceman님의 프로필 이미지
niceman
Instructor

안녕하세요. 도아님.

부모함수에서 에러가 난다고 하셨는데

IndexError: list index out of range

해당 에러는 인덱스로 리스트 데이터 접근 시에 범위를벗어나서 참조할 값이 없어서 발생하는 에러입니다.

인덱스는 0부터 시작하고 데이터 총 개수의 -1 까지 진행 됩니다.

다시 한 번 소스코드를 확인해 보세요.

감사합니다.

pearl0975380's profile image
pearl0975380

asked

Ask a question