gpt4 book ai didi

python - 如何编写div类属性BeautifulSoup

转载 作者:太空宇宙 更新时间:2023-11-03 14:11:21 25 4
gpt4 key购买 nike

我知道使用 python BeautifulSoup 编写这样的新标签:

# create new_div
new_div = soup.new_tag("div", id="description", style="float:left")
# insert it into the document
soup.body.append(new_div)

但是在添加类属性时出现错误,我得到了无效语法:

new_div = soup.new_tag("div", class="description", style="float:left") ^ SyntaxError: invalid syntax

创建新标签时添加类属性的正确方法是什么?

谢谢

最佳答案

很抱歉,我是通过查找其他引用来写这篇文章的。 on stackoverflow question

new_div = soup.new_tag("div", style="float:left", **{'class':'classname'})

关于python - 如何编写div类属性BeautifulSoup,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48471855/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com