3

I have a XML file with Excel format, like that: enter image description here

How can i read data from it in python without using external modules.

1
  • Why you don't want to use external modules? As a plain text you could read this with built-in file.read(), Commented Apr 3, 2016 at 15:26

1 Answer 1

1

Python has a minimal library (native) for xml:

The ElementTree XML API

Sign up to request clarification or add additional context in comments.

1 Comment

Thanks for the solution! Not OP but this is the route I took to read an xml with an xls name, then rebuilt it with openpyxl into xlsx.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.