“Как сохранить XML -файл в Python” Ответ

Как написать симпатичный XML в файл python

# Use lxml as the core library for xml manipulation. 
from lxml import etree

xml_object = etree.tostring(root,
                            pretty_print=True,
                            xml_declaration=True,
                            encoding='UTF-8')

with open("xmlfile.xml", "wb") as writter: # wb - write bytes mode
    writter.write(xml_object)`
Victorious Vole

Как сохранить XML -файл в Python

from lxml import etree

xml_object = etree.tostring(root,
                            pretty_print=True,
                            xml_declaration=True,
                            encoding='UTF-8')

with open("xmlfile.xml", "wb") as writter: # wb - write bytes mode
    writter.write(xm
Funny Flatworm

Как сохранить XML -файл в Python

xml_object = etree.tostring(root,
                            pretty_print=True,
                            xml_declaration=True,
                            encoding='UTF-8')

with open("xmlfile.xml", "wb") as writter: # wb - write bytes mode
    writter.write(xml_object)
Funny Flatworm

Ответы похожие на “Как сохранить XML -файл в Python”

Вопросы похожие на “Как сохранить XML -файл в Python”

Больше похожих ответов на “Как сохранить XML -файл в Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования