我是 Python 和 SO 的相对新手。我有一个需要从中提取信息的 xml 文件。我已经为此苦苦挣扎了好几天,但我想我终于找到了可以正确提取信息的东西。现在我很难获得正确的输出。这是我的代码:
from xml import etree
node = etree.fromstring('<dataObject><identifier>5e1882d882ec530069d6d29e28944396</identifier><description>This is a paragraph about a shark.</description></dataObject>')
identifier = node.findtext('identifier')
description = node.findtext('description')
print identifier, description
我得到的结果是“5e1882d882ec530069d6d29e28944396 这是一个关于鲨鱼的段落。”,这就是我想要的。
但是,我真正需要的是能够从文件而不是字符串中读取。所以我试试这段代码:
from xml import etree
node = etree.parse('test3.xml')
identifier = node.findtext('identifier')
description = node.findtext('description')
print identifier, description
现在我的结果是“无无”。我有一种感觉,我要么没有正确获取文件,要么输出有问题。这是test3.xml的内容
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<response xmlns="http://www.eol.org/transfer/content/0.3" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dwc="http://rs.tdwg.org/dwc/dwcore/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:dwct="http://rs.tdwg.org/dwc/terms/" xsi:schemaLocation="http://www.eol.org/transfer/content/0.3 http://services.eol.org/schema/content_0_3.xsd">
<identifier>5e1882d822ec530069d6d29e28944369</identifier>
<description>This is a paragraph about a shark.</description>