How do I open a file that is an excel file for reading in python? I've opened text files ie sometextfile.txt with the reading command. how do i do that for an excel file?
feedback
|
|
This isn't as straightforward as opening a plain text file and will require some sort of external module since nothing is built-in to do this. Here are some options: If possible, you may want to consider exporting the excel spreadsheet as a CSV file and then using the built-in python csv module to read it: | |||||||||
feedback
|
|
Try the xlrd library. [Edit] - from what I can see from your comment, something like the snippet below might do the trick. I'm assuming here that you're just searching one column for the word 'john', but you could add more or make this into a more generic function.
| |||||||
feedback
|