Multiple Choices
(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. A list of all tags in the HTML from the URL
C. A list of link from the URL
D. A list of HTML link