Reputation: 11
Help! I'm trying to get excel into my program but I can't figure it out. Can someone suggest a way to do this. I have tried to figure out how to use Tktables, but because I'm doing this at school we don't have all the packs.
Thank you so much :)
Upvotes: 1
Views: 502
Reputation: 2500
If you are at school, one way to use built in functionality is to save the excel file as a .csv and then use the built in csv package to read what you need into python.
csv is easy to use and described here: https://docs.python.org/2/library/csv.html
Upvotes: 2