使用python创建xml文件的子集

时间:2016-04-08 23:57:30

标签: python xml parsing

我希望使用python创建一个xml文件的子集进行测试。在下面的示例xml中,我想提取项目日期为" 2015年1月和#34;并使用这些记录创建一个新的xml文件。任何帮助将不胜感激!

<config>
  <item date="January 2015">
    <mode>1</mode>
    <current>1</current>
  </item>
  <item date="February 2016">
    <mode>9</mode>
    <current>100</current>
  </item>
  <item date="January 2015">
    <mode>9</mode>
    <current>100</current>
  </item>
</config> 

0 个答案:

没有答案