Tricky Question, here are three lists looks like:
['Alice', 'Sam', 'Chris', 'Dave']
['Alice', 'Sam', 'Chris', 'Dave']
['Bob', 'Bob', 'Chris', 'Dave']
As you can see Alice is in 2 list and Bob 1, the answer will be 12. Confusing part could be 11 as how my_list original changed ? As this assignment, my_list2[0] = 'Alice', changes my_list2 but also my_list1 as they point to same memory location. While my_list3 is completely new list at its own location.