79410746

Date: 2025-02-04 06:32:44
Score: 1
Natty:
Report link
from openpyxl import load_workbook
wb = load_workbook("charts.xlsx")

sheetnames = wb.sheetnames
charts = []

for sheet in sheetnames:
    ws = wb[sheet]
    chart_info = ws._charts
    charts.append(chart_info)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Arjun V