我想寫如下面的代碼:網頁抓取 - 錯誤發生
from urllib.request import urlopen
from bs4 import BeautifulSoup
html = urlopen("http://www.pythonscraping.com/pages/page3.html")
bsObj = BeautifulSoup(html)
for sibling in bsObj.find("table",{"id":"giftList"}).tr.next_siblings: print(sibling)
但每當我鍵入的3210線,它拋出一個錯誤,如下圖:
希望任何人都可以幫我解決這個問題。
感謝
你有一個額外的左花苞芽 – Mrl0330
問題中的代碼是不一樣的圖像 –