以下の流れでコードを実行していて、以下のところでラーが出てしまいました。
どのように解決すればよろしいでしょうか。ご教授お願い致します。
python
1import requests 2from bs4 import BeautifulSoup 3↓ 4url = 'https://scraping-for-beginner.herokuapp.com/udemy' 5res = requests.get(url) 6↓ 7res 8↓ 9soup =BeautifulSoup(res.text, 'html.parser') 10soup 11↓ 12subscribers = soup.find_all('p', attrs={'class': 'subscribers'})[0] 13subscribers 14↓ 15subscribers.text.split(':') 16↓ 17n_subscribers = int(n_subscribers.text.split(':')) 18n_subscribers
エラーコード
python
1n_subscribers = int(n_subscribers.text.split(':')) 2n_subscribers 3↓ 4NameError Traceback (most recent call last) 5<ipython-input-59-0d30ba681ad2> in <module> 6----> 1 n_subscribers = int(n_subscribers.text.split(':')) 7 2 n_subscribers 8 9NameError: name 'n_subscribers' is not defined
回答3件
あなたの回答
tips
プレビュー