openpyexcell read data

Solutions on MaxInterview for openpyexcell read data by the best coders in the world

showing results for - "openpyexcell read data"
Mario
31 Sep 2020
1>>> from openpyxl import load_workbook
2>>> workbook = load_workbook(filename="sample.xlsx")
3>>> workbook.sheetnames
4['Sheet 1']
5
6>>> sheet = workbook.active
7>>> sheet
8<Worksheet "Sheet 1">
9
10>>> sheet.title
11'Sheet 1'
12
similar questions
queries leading to this page
openpyexcell read data