お世話になります。
記載しているコードで以下のエラーがでてしまうのは何故でしょうか。
エラー内容:'NoneType' object has no attribute 'find_all'
Python
1#yahuuニュースの最新トピックス一覧を表示する 2import requests 3from bs4 import BeautifulSoup 4 5target_url="https://www.yahoo.co.jp/" 6html=requests.get(target_url) 7 8 9soup=BeautifulSoup(html.content,"html.parser") 10 11topic=soup.find(class_="topicsList_main") 12for element in topic.find_all("a"): 13 print(element.text) 14 15