Python node Concat Strings in List

Hello everyone,

I know it is an easy question, but I never used Python before and I can’t find the solution with the Dynamo Nodes.

I have two lists of strings, with different lengths and I need to connect them like the logic shown in this example:

list1 = [‘V’,‘W’,‘X’,‘Y’,‘Z’]
list2 = [‘A’,‘B’]
finalList = [‘VA’,‘VB’,‘WA’,‘WB’,‘XA’,‘XB’,‘YA’,‘YB’,‘ZA’,‘ZB’]

I know its something with two loops, but I didn’t manage do work it out.
Would be so nice if someone could hlep me with that!
Thanks in advance :slight_smile:

Just add the two lists together (+ with strings joins them) and force the list levels to look at every input individually.