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


创建新标签时如何添加类属性的正确方法?

谢谢

最佳答案

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


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

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

10-11 17:59