'May i add this in this list?

i got this code, and i want to add the print in "lista_3" how can i do it? Thanks!

lista_1 = ["h",'o','l','a',' ', 'm','u','n','d','o']

lista_2 = ["h",'o','l','a',' ', 'l','u','n','a']

lista_3 = []

set_1 = set(lista_1) set_2 = set(lista_2)

print(set_1.intersection(set_2))



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source