from urllib.request import urlopen
from bs4 import BeautifulSoup
html= urlopen("http://www.pythonscraping.com/pages/page3.html")
soup= BeautifulSoup(html.read())
print(soup.find("img",{"src":"../img/gifts/img1.jpg"
}).parent.previous_sibling.get_text())
上記のコードはうまく動作しますが、下のコードは正常ではありません。上記のように属性エラーが発生します。誰か私に理由を教えてもらえますか?属性エラー: 'NoneType'オブジェクトに 'parent'属性がありません
from urllib.request import urlopen
from bs4 import BeautifulSoup
html= urlopen("http://www.pythonscraping.com/pages/page3.html")
soup= BeautifulSoup(html.read())
price =soup.find("img",{"src=":"../img/gifts/img1.jpg"
}).parent.previous_sibling.get_text()
print(price)
ありがとうございます! :)
両方とも収量$ 15.00 – Serge
私は同じと言うことができます。私は再起動しようとしましたが、すべて同じエラーです。もう一度コードを調べてみます。ありがとう – Xexus