I'm trying to figure out a way to dynamically reproduce the loop structure below, dependent on the number of "groups" I have. Any ideas? Thanks in advance!
for a in range(len(group1)):
for b in range(len(group2)):
for c in range(len(group3)):
for d in range(len(group4)):
for e in range(len(group5)):
for f in range(len(group6)):
createImage(a,b,c,d,e,f,counter)