gpt4 book ai didi

python - 不明白为什么一个 XML 字段会出现 AttributeError 而其他字段却不会

转载 作者:太空宇宙 更新时间:2023-11-03 21:21:05 24 4
gpt4 key购买 nike

下面是我将 xml 转换为 csv 的代码。 empIdfullName 正在按预期进行转换,但无法使 currentAddress 的城市正常工作。我做错了什么?

如果我在 emp_head.append 中使用 currentAddress,它什么也不做,如果我使用 "city",则会出错并显示错误消息 "AttributeError: 'NoneType' object has no attribute “标签”

XML:

<?xml version = '1.0' encoding = 'UTF-8'?>
<ns2:exportEmpData xmlns:ns2="http://webservice.example.com/">
<emplist>
<empId>6029</empId>
<fullName>Justin Clark</fullName>
<currentAddress houseNumber="14" street="Lepanto" city="Barcelona"/>
</emplist>
<emplist>
<empId>6078</empId>
<fullName>Jose Domingo</fullName>
<currentAddress houseNumber="48" street="Gran Via" city="Madrid"/>
</emplist>
</ns2:exportEmpData>

我的代码:

import xml
import csv
import xml.etree.ElementTree as ET

tree = ET.parse('C:/emp/emplist.xml')
root = tree.getroot()

Emp_data = open('C:/emp/emplist.csv', 'wb')

csvwriter = csv.writer(Emp_data)
emp_head = []

count = 0

for member in root.findall('emplist'):
emp_nodes = []
if count == 0:
empId = member.find('empId').tag
emp_head.append(empId)
fullName = member.find('fullName').tag
emp_head.append(fullName)
currentAddress = member.find('currentAddress').tag
emp_head.append(currentAddress)
csvwriter.writerow(emp_head)
count = count + 1

empId = member.find('empId').text
emp_nodes.append(empId)
fullName = member.find('fullName').text
emp_nodes.append(fullName)
currentAddress = member.find('currentAddress').text
emp_nodes.append(currentAddress)
csvwriter.writerow(emp_nodes)
Emp_data.close()

我需要从上面的 xml 转换 3 个字段:

empId,fullName,city
6029,Justin Clark,Barcelona
6078,Jose Domingo,Madrid

最佳答案

您需要执行以下操作:

currentAddress = member.find('currentAddress').attrib.get('city')

在此上下文中获取 text 的值不正确。

关于python - 不明白为什么一个 XML 字段会出现 AttributeError 而其他字段却不会,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54245411/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com