I want to convert this part of the code to a list comprehension, however my knowledge of this method is still very weak and it does not occur to me how, if you could help me, I would appreciate it.
list_1 = ["h",'i',' ', 'w','o','r','l','d']
list_2 = ["h",'i',' ', 'm','o','o','n']
list_3 = []
for word in list_1:
if word in list_2 and word not in list_3:
list_3.append(word)
print(list_3)