themes = ['theme1', 'theme2', 'theme3']
orders = ['chronological order', 'order of relevance']
independence = ['independent', 'overlapping', 'interconnected']
# initialize results list
# iterate through all combinations
for ind in independence:
# create a dictionary for each combination
'summary': "This is a summary for theme {} in {} with {} independence.".format(theme, order, ind)
# append the dictionary to the results list
# convert the results list to JSON format
json_results = json.dumps(results)
# print the JSON results