What does the following block of code print?
url = “https://www.ella.com/”
html = urllib.request.urlopen(url).read()
soup = BeautifulSoup(html, ‘html.parser’)
tags = soup(‘img’)
for tag in tags:
print(tag.get(‘src’, None))
1 Million +
500 +
100 +