# -*- coding: utf-8 -*- import xml.dom.minidom dom = xml.dom.minidom.parseString("<myxml>Some data<empty/> some more data</myxml>") s = dom.toxml() # 美しく出力する s = dom.toprettyxml()
詳細はドキュメントで
# -*- coding: utf-8 -*- import xml.dom.minidom dom = xml.dom.minidom.parseString("<myxml>Some data<empty/> some more data</myxml>") s = dom.toxml() # 美しく出力する s = dom.toprettyxml()
OSはUbuntu 9.04
PythonはPython 2.6.2
0 件のコメント:
コメントを投稿