有下列代码,请分析并判定执行结果为()。html_doc="""TheDormouse'sstoryTheDormouse'sstoryOnceuponatimetherewerethreelittlesisters;andtheirnameswereElsie,LacieandTillie;andtheylivedatthebottomofawell...."""frombs4importBeautifulSoupsoup=BeautifulSoup(html_doc)print(soup.find_all('a'))
举一反三
- 若有下列文档:TheDormouse'sstoryTheDormouse'sstoryOnceuponatimetherewerethreelittlesisters;andtheirnameswereElsie,LacieandTillie;andtheylivedatthebottomofawell....有一位同学编写了下列代码:bsoup=BeautifulSoup(htmlDoc,'html.parser')result=bsoup.p.stringprint(result)此时,输出内容为()。
- 有下列代码,请分析并判定执行结果为( )。 html_doc = """ <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 href="http://example.com/elsie" class="sister" id="link1">Elsie</a>, <a href="http://example.com/lacie" class="sister" id="link2">Lacie</a> and <a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>; and they lived at the bottom of a well.</p> <p class="story">...</p> """ from bs4 import BeautifulSoup soup = BeautifulSoup(html_doc) print(soup.find_all('a'))
- 用记事本编写HTML代码,文件保存的类型是( )? A: .doc B: .exe C: .txt D: .html
- HTML文件的扩展名为 。 A: .exe B: .html C: .txt D: .doc
- HTML文件的扩展名为 。 A: .txt B: .html C: .php D: .doc