79554549

Date: 2025-04-04 06:01:03
Score: 0.5
Natty:
Report link

I think google sheets can open Excel. Here is a solution with python:

import pandas as pd

df = pd.read_xml("usd.xml", xpath=".//doc:Obs", namespaces = {"doc": "http://www.ecb.europa.eu/vocabulary/stats/exr/1"})
df.to_excel("currency.xlsx")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Paul-ET