I have three different loops in my code but I am wondering if there is a way to combine two of them where it only loops through once. My code is below:
for x in groups: A bunch of code that produces the following... frames[x] highcs[x] I then loop through two loops below. These are the ones I'm trying to combine.
for x, frame in frames.items(): more unrelated code for x, highc in highcs.items(): The final two loops are really just creating excel workbooks using xlsxwriter. The first loop creates the workbook and inputs dataframes from frames[x] onto the worksheets. Then highc just goes back over the same sheets and adds new dataframes.