from BeautifulSoup import BeautifulStonesoupxml_data = """<doc> <test>test</test> <foo:bar>Hello World!</foo:bar></doc>"""soup = BeautifulStonesoup(xml_data)print soup.prettify()make = soup.find('foo:bar')print make# prints <foo:bar>Hello World!</foo:bar>make.contents = ['top of the world Ma!']print make# prints <foo:bar></foo:bar>
如何更改元素的内容,在这种情况下是变量“make”中的元素,而不会丢失内容?如果您能指出我可以修改现有xml文档的其他纯python模块,请告诉我.
PS! BeautifulSoup非常适合HTML和XML的屏幕分析和解析!
解决方法 查看 documentation onreplaceWith
.这有效: make.contents[0].replaceWith('top of the world Ma!')总结
以上是内存溢出为你收集整理的python – 使用BeautifulSoup更改元素值将返回空元素全部内容,希望文章能够帮你解决python – 使用BeautifulSoup更改元素值将返回空元素所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)