你好,我看了Day-1 Python爬蟲小人生(1) 因為你是爬標題 所以寫法 sel = soup.select("div.title a") #取HTML標中的 中的標籤存入sel for s in sel: print(s["href"], s.text) 那如果要爬標題的每一則評論要怎麼改呢? 謝謝!
以下是一個示例:
每則評論的html結構長這樣
<div class="push"><span...>評論內容</span></div>
所以你的爬虫可以這樣試試
r = requests.get("https://www.ptt.cc/bbs/MobileComm/M.1555894481.A.D85.html")
soup = BeautifulSoup(r.text,"html.parser")
sel = soup.findAll("div", {"class": "push"})
for s in sel:
四個空格print(s.text)