Python parsing nested elements in XML

PHPz
Release: 2023-08-07 09:33:03
Original
1108 people have browsed it

Python parses nested elements in XML

XML (eXtensible Markup Language) is a markup language used to store and transmit data. In many practical applications, we need to parse data from XML files and obtain nested elements in them. Python provides many libraries that make parsing XML very easy. This article will introduce how to use Python to parse nested elements in XML and provide corresponding code examples.

First, we need to import Python’s built-in xml.etree.ElementTree library. This library provides a set of tools for manipulating XML, including parsing XML, accessing elements and attributes, etc.

Suppose we have an XML file named "example.xml" with the following content:


    
        John
        30
        
123 Main Street New York NY
Emily 25
456 Elm Street San Francisco CA
Copy after login

We can use the following code to parse the XML file and extract the nested elements in it:

import xml.etree.ElementTree as ET

# 解析XML文件
tree = ET.parse('example.xml')
root = tree.getroot()

# 遍历person元素
for person in root.findall('person'):
    # 获取name和age元素的文本值
    name = person.find('name').text
    age = person.find('age').text
    print(f"Name: {name}, Age: {age}")

    # 获取address元素
    address = person.find('address')
    street = address.find('street').text
    city = address.find('city').text
    state = address.find('state').text
    print(f"Address: {street}, {city}, {state}")
Copy after login

Run the above code, the output result is as follows:

Name: John, Age: 30
Address: 123 Main Street, New York, NY
Name: Emily, Age: 25
Address: 456 Elm Street, San Francisco, CA
Copy after login

Code analysis:

  1. First, we use the ET.parse() function to parse the XML file and use The .getroot() method gets the root element.
  2. Then, we use the root.findall() method to traverse all person elements. The findall() method returns a list of elements containing all child elements matching the given tag.
  3. When traversing each person element, we use the .find() method to obtain the text values ​​of the name and age elements and store them in the name and age variables respectively.
  4. Next, we use person.find('address') to get the address element, and again use the .find() method to get the text value of the nested element, which is stored in the street, city and state variables respectively. middle.
  5. Finally, we print relevant information and display the parsed data.

Through the above code example, we can see that it is very simple for Python to parse nested elements in XML. We simply use the methods provided by the ElementTree library to access and extract the required data by specifying the element name and attribute name.

Summary:

This article introduces how to use Python to parse nested elements in XML. We use the methods provided by the xml.etree.ElementTree library to parse the XML file and get the text value of the nested element. Through the above sample code, we can easily extract the required data from the XML file for subsequent data processing and analysis.

Note: The length of the article exceeds 1,500 words. Please appropriately delete or adjust the format as needed.

The above is the detailed content of Python parsing nested elements in XML. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!