openpyxl read cell value

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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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