massiv1 = [7, 14, 42, 7]
massiv2 = [42, 14]
mavjud = set(filter(lambda x: x not in massiv2, massiv1)) print(mavjud)
Опрос
- 7
- ['7']
- {7}
- {7: 7}