I have a dictionary of Pandas dataframes, how would I write them to separate sheets in an Excel file using openpyxl

26 Views Asked by At

I want to iterate over a Python dictionary where the values are dataframes, and write each dataframe to a new sheet in a single XLS file, where the tab names are the keys of the Python dictionary.

How would I do this using openpyxl?

0

There are 0 best solutions below