我知道使用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:语法无效
在创建新标记时,如何正确添加类属性?
感谢
答案 0 :(得分:1)
对不起,我通过寻找其他人来写这篇文章。 on stackoverflow question
new_div = soup.new_tag(" div",style =" float:left", ** {'类':'类名'})