openpyxl read cell value

Solutions on MaxInterview for openpyxl read cell value by the best coders in the world

showing results for - "openpyxl read cell value"
Linus
11 Jul 2016
1from openpyxl import load_workbook
2
3wb = load_workbook("file.xlsx", data_only=True)
4sh = wb["Sheet_name"]
5print(sh["x10"].value)
6