Is there any way that I can access the cells in an Excel sheet using Python?
-
-
Answer:
Sure there's a way, but you'd be best served using an open-source library that knows how to parse an Excel file. One library is https://github.com/python-excel. Here's an example of how it's done, using one of their test cases: book = xlrd.open_workbook(from_this_dir('your-excel-file.xls'), formatting_info=True)sheet = book.sheet_by_name('some-sheet-name')cell_value = sheet.cell(1, 1).value You just need the "xlrd" library if you're just reading. Another option is https://pythonhosted.org/openpyxl. Here's an example using this library: book = load_workbook(filename = r'your-excel-file.xlsx')sheet = wb['some-sheet-name']cell_value = sheet['A1'].value
Scott Danzig at Quora Visit the source
Other answers
Request to give more details in steps may be for better understanding.
Ahmed Ali Siddique
Related Q & A:
- How I can find string in excel with vba?Best solution by Stack Overflow
- Does anyone know where I can find free printable sheet music?Best solution by Yahoo! Answers
- Does any one know where I can get free sheet music?Best solution by Yahoo! Answers
- Is there a way where u can send someone an email using hotmail and adding a small picture in the?Best solution by Yahoo! Answers
- Is their a way that i can find out someones real name with Just their AOL screen name?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.