Posts
 
Reputation
Joined
Last Seen
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 Commented Post
1 Endorsement
Ranked #858
Ranked #107.55K
~5K People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for hellohellohello

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

Member Avatar for akiva.berger
0
5K

The End.