Beautiful Soup 的 Tag.extend(~)
将列表中的所有元素按顺序添加到标签中。
例子
考虑以下 HTML:
html = """
<p>Hello</p>
"""
soup = BeautifulSoup(html)
要将列表 a
的元素添加到 <p>
标记:
a = [" ", "World", "!"]
soup.p.extend(a)
soup.p
<p>Hello World!</p>
相关用法
- Python BeautifulSoup extract方法用法及代码示例
- Python NumPy expandtabs方法用法及代码示例
- Python math expm1()用法及代码示例
- Python NumPy expand_dims方法用法及代码示例
- Python exponential转float用法及代码示例
- Python NumPy exp2方法用法及代码示例
- Python exec()用法及代码示例
- Python NumPy exp方法用法及代码示例
- Python expandtabs()用法及代码示例
- Python NumPy expm1方法用法及代码示例
- Python math exp()用法及代码示例
- Python email.message.Message.walk用法及代码示例
- Python numpy matrix eye()用法及代码示例
- Python enchant.request_dict()用法及代码示例
- Python email.headerregistry.DateHeader用法及代码示例
- Python enum.IntEnum用法及代码示例
- Python enchant.get_enchant_version()用法及代码示例
- Python email.message.EmailMessage.add_header用法及代码示例
- Python emoji转text用法及代码示例
- Python enchant.request_pwl_dict()用法及代码示例
- Python eval用法及代码示例
- Python email.utils.getaddresses用法及代码示例
- Python email.header.decode_header用法及代码示例
- Python email.message.EmailMessage.walk用法及代码示例
- Python NumPy eye方法用法及代码示例
注:本文由纯净天空筛选整理自Arthur Yanagisawa大神的英文原创作品 BeautifulSoup | extend method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。