判断题下列方法中,( )可以用于网页内容解析。多选题Python库BeautifulSoup是一个可用于( )的工具库。多选题若有下列文档:The Dormouse's story The Dormouse's story Once upon a time there were three little sisters; and their names wereElsie,Lacie andTillie;and they lived at the bottom of a well. ...有一位同学编写了下列代码:bsoup = BeautifulSoup(htmlDoc,'html.parser')result = bsoup.a.attrsprint(result)此时,输出内容为( )。判断题使用python解析mysql数据库文件时,需要安装的支持库有( )。多选题下面选项中,可用于提取微软word文档内容的第三方库是( )。多选题( )是一门在XML文档中查找信息的语言。多选题安装anaconda这一集成python开发环境后,可用于提取微软excel表格的库是( )。多选题JSON模块中dumps()和loads()函数的作用分别是( )。判断题当前WWW中常用的数据交换格式有( )。多选题有下列XML文档,XPATH:“/bookstore/book[position()29.99 Learning XML 39.95判断题BeautifulSoup的对象类型中,常见的有( )。判断题网络信息爬取过程中常见的数据文件类型有( )。多选题使用pandas加载excel文件时,常用的方法是( )。多选题有下列代码,请分析并判定执行结果为( )。html_doc = """The Dormouse's story The Dormouse's story Once upon a time there were three little sisters; and their names wereElsie,Lacie andTillie;and they lived at the bottom of a well. ..."""from bs4 import BeautifulSoupsoup = BeautifulSoup(html_doc)print(soup.find_all('a'))多选题若有下列文档:The Dormouse's story The Dormouse's story Once upon a time there were three little sisters; and their names wereElsie,Lacie andTillie;and they lived at the bottom of a well. ...有一位同学编写了下列代码:bsoup = BeautifulSoup(htmlDoc,'html.parser')result = bsoup.p.stringprint(result)此时,输出内容为( )。多选题正则表达式^(\d{6})(\d{4})(\d{2})(\d{2})(\d{3})([0-9]|X)$匹配的内容是( )多选题XPATH通过( )进行导航。多选题使用python查询mysql数据库文件时的基本步骤是( )。多选题python标准数据库接口为( )。