1# Create the two lists2l1 = [1, 2, 2, 4]
3l2 = [2, 5, 5, 5, 6]
4# Find elements that are in second but not in first5new = set(l2) - set(l1)
6# Create the new list using list concatenation7l = l1 + list(new)
you will get a confirmation link on this - you will have to click that for successful submission of your answer. we require this to keep the website free of spam, bots and unhelpful content
please ensure to add code which is syntactically corrent and executes properly
you will get a confirmation link on this - you will have to click that for successful submission of your question. we require this to keep the website free of spam, bots and unhelpful content