python script output is not generating the world list the right way

words = [‘cyse’, ‘gmu’, ‘mason’, ’20’, ’21’, ’22’, ’23’, ’24’ ]

cases = []
for word in words:
pr = product(*zip(word, word.upper()))
cases += [set(map(”.join, pr))]

for perm in permutations(cases):
for prod in product(*per… Continue reading python script output is not generating the world list the right way