Get all
img = soup.find_all('img')
The result is a lt; img> Array of tags, using get() to get <; img> The SRC
src=img[2].get('src')
img = soup.find_all('img')
The result is a lt; img> Array of tags, using get() to get <; img> The SRC
src=img[2].get('src')