代码的注释功能是如何实现啊?用python实现对xml文档的注释
发布网友
发布时间:2022-05-02 00:46
我来回答
共1个回答
热心网友
时间:2022-06-25 17:49
使用python自带的ElementTree模块,给你个例子你就知道了
xml文档
<?xml version="1.0" encoding="utf-8"?>
<config>
<id>0</id>
<log_path>E:/Python</log_path>
</config>
Python 代码,修改id节的内容
from xml.etree import ElementTree
xml_file='config.xml'
xml=ElementTree.ElementTree(file=xml_file).getroot()
xml.find('id').text=1