14 Reputation Points
Ranked #2K
- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
100% Quality Score
- Upvotes Received
- 2
- Posts with Upvotes
- 1
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
1 Endorsement
Ranked #858
Ranked #107.55K
1 Posted Topic
Re: just put this together for myself in the event your still in need: from openpyxl.reader.excel import load_workbook def readxl(): database = [] wb=load_workbook('file name') for sheet in wb.worksheets: for row in sheet.rows: values=[] for cell in row: values.append(cell.value) database.append(values) return database |
The End.