Given two lists like:
snippets1 = ["aka", "btb", "wktl"]
snippets2 = ["tltd", "rth", "pef"]
How can I make a third list from the other two, so that index[0] from list 1 has all of the indexes from list 2 added to it in turn (each being a separate entry in the new list), and then the same for index[1] from list1, and so on? That is, the result should be
resultlist = ["akatltd", "akarth", "akapef", "btbtltd", "btbrth", "btbpef", "wktltltd", "wktlrth", "wktlpef"]