Home > Back-end >  Using Python for excel
Using Python for excel

Time:03-04

I am trying write python function for convert .sdf file to excel and create table with correct columns and right data in right column. Which python libraries i can use for this?

This is how i get data in sdf enter image description here

And how its need to be converted enter image description here

CodePudding user response:

https://pandas.pydata.org/getting_started.html

See if the above library can help you out :)

  • Related