有下列代码,请分析并判定执行结果为( )。 html_doc = """ The Dormouse's story
The Dormouse's story
Once upon a time there were three little sisters; and their names were Elsie, Lacie and Tillie; and they lived at the bottom of a well.
...
""" from bs4 import BeautifulSoup soup = BeautifulSoup(html_doc) print(soup.find_all('a'))举一反三
- 若有下列文档: <html><head><title>The Dormouse's story</title></head> <body> <p class="title"><b>The Dormouse's story</b></p> <p class="story">Once upon a time there were three little sisters; and their names were <a class="sister" href="http://example.com/elsie" id="link1">Elsie</a>, <a class="sister" href="http://example.com/lacie" id="link2">Lacie</a> and <a class="sister" href="http://example.com/tillie" id="link3">Tillie</a>; and they lived at the bottom of a well.</p> <p class="story">...</p> <div><!-- This is a comment --></div> </body> </html> 有一位同学编写了下列代码: bsoup = BeautifulSoup(htmlDoc,'html.parser') result = bsoup.p.string print(result) 此时,输出内容为( )。
- 在第一章中,我们学习了哪些HTML标记? A: html、head、body、title、a B: html、head、body、document、link C: html、doc、page、title、a D: html、info、body、title、link
- 下面选项中,可以将HTML页面的标题设置为“电子商务师”的是________。 A: <HEAD>电子商务师</HEAD> B: <TITLE>电子商务师</TITLE> C: <P>电子商务师</P> D: <LINK>电子商务师</LINK>
- 什么属性定义 HTML 元素的唯一的 id? A: class B: style C: id D: title
- 下列不属于HTML标签的是( )。 A: class B: a C: title D: head