
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
'[코드스니펫] 지금까지의 코드'를 그대로 복사해 실행해봤는데 아래 오류 (?) 같은게 뜹니다.
이것은 어떻게 해결하나요?
참고로 다 크롬으로 진행했습니다.

작성한 코드 및 에러 메세지
!pip install requests !pip install beautifulsoup4 import requests from bs4 import BeautifulSoup import pandas as pd url = "https://finance.naver.com/item/main.nhn?code=005930" response = requests.get(url) html = response.content soup = BeautifulSoup(html, 'html.parser') tables = soup.find_all('table', {'class': 'tb_type1 tb_num tb_type1_ifrs'}) df = pd.read_html(str(tables[0]))[0] print(df) # 데이터프레임 출력 print(financial_statement)
