Beautiful Soup库在进行标签树下行遍历时,以列表形式返回儿子节点的代码是哪个?
A: .contents
B: .string
C: .descendants
D: .children
A: .contents
B: .string
C: .descendants
D: .children
举一反三
- Beautiful Soup库在进行标签树下行遍历时,以列表形式返回儿子节点的代码是哪个? A: .descendants B: .children C: .content D: .string
- 若要获取标签的子节点,下面说法正确的是( ) A: contents属性返回子节点组成的列表 B: children属性返回子节点组成的列表 C: children返回的列表可以直接访问 D: descendants属性返回标签所有后代节点构成的列表
- 自上而下遍历的属性,contents 属性返回子节点组成的( );children 属性返回的是子节点所构成的( ),还需要经过循环才能取出子节点。
- 中国大学MOOC: 为什么Beautiful Soup库叫这个名字?
- Beautiful Soup是一个基于Python语言的XML和HTML解析库。