With the following script I try to get the data from a range of cells:
wb=openpyxl.load_workbook('testfile.xlsx')
sheet = wb.get_sheet_by_name('Hoja1')
# Imprimir un rango
multiple_cells = sheet['A1':'C20']
for row in multiple_cells:
for...
asked by
15.12.2017 / 20:39