Kizspy Question: 30
(Choose 1 answer)
What ends up in the "x" variable in the following code:
html urllib.request.urlopen(url).read()
soup
BeautifulSoup(html, 'html.parser')
x = soup('a')
A. A list of all the anchor tags (<a..) in the HTML from the URL
B. True if there were any anchor tags in the HTML from the URL
C. All of the externally linked CSS files in the HTML from the URL
D. All of the paragraphs of the HTML from the URL