1. 程式人生 > >BeautifulSoup 獲取頁面中 圖片的src

BeautifulSoup 獲取頁面中 圖片的src

 使用 find_all() 方法獲取所有的<img>標籤

img = soup.find_all('img')

得到的結果是一個<img>標籤陣列,使用 get() 獲取<img>的src

src=img[2].get('src')