openpyxl offers the ability to delete one row with index like ws.delete_cols(7)
Now i want to delete more cells.
First I iterate over all cells:
for row in ws.iter_rows():
for cell in row:
There I want to make ws.delete_cols(cell) but it does not work. Does someone know how to make it?