如何编写div类属性BeaufitulSoup

时间:2018-01-27 01:54:16

标签: python beautifulsoup

我知道使用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:语法无效

在创建新标记时,如何正确添加类属性?

感谢

1 个答案:

答案 0 :(得分:1)

对不起,我通过寻找其他人来写这篇文章。 on stackoverflow question

  

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