Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
variable 内の XML ノードを想像してくださいn。
n
MSXML を介してこのノードにアクセスすると、.xmlプロパティを使用してノードの XML ソースを取得できます。つまり、n.xmlノード ソース全体が返されます。
.xml
n.xml
lxmlで同じことを行うにはどうすればよいですか?
.tostring()メソッドを使用します。
.tostring()
from lxml import etree print etree.tostring(node)