lxml is faster and more feature-rich, but if you're doing simple parsing, `ElementTree` will do the job.
One gotcha: watch out for namespaces in XML, they can trip you up.
Here's a quick example:
```python
import xml.etree.ElementTree as ET
tree = ET.parse('file.xml')
root = tree.getroot()
```
One gotcha: watch out for namespaces in XML, they can trip you up.
Here's a quick example:
```python
import xml.etree.ElementTree as ET
tree = ET.parse('file.xml')
root = tree.getroot()
```
