AJUDA (PYTHON)
Estou tentando extrair informações de um arquivo xml e não tô conseguindo, ele executa o código sem erros, mas não aparece nada no console
import os
from xml.etree import ElementTree
file_name = ''''amauri.xml''''
full_file = os.path.abspath(os.path.join(''''dados'''', file_name))
dom = ElementTree.parse(full_file)
nome = dom.findall(''''NOME-COMPLETO/DATA-ATUALIZAÇÃO'''')
for c in nome:
nome = c.find(''''NOME-COMPLETO'''').text
data = c.find(''''DATA-ATUALIZAÇÃO'''').text
print(nome, data)
import os
from xml.etree import ElementTree
file_name = ''''amauri.xml''''
full_file = os.path.abspath(os.path.join(''''dados'''', file_name))
dom = ElementTree.parse(full_file)
nome = dom.findall(''''NOME-COMPLETO/DATA-ATUALIZAÇÃO'''')
for c in nome:
nome = c.find(''''NOME-COMPLETO'''').text
data = c.find(''''DATA-ATUALIZAÇÃO'''').text
print(nome, data)
Ivone
Curtidas 0