How can I remove multiple items from a list? I basically want to remove a list of items from another list, is this possible without using a loop function?
Example:
list_a: user1, user2, user3, user4
list_b: user2, user3
I want to get: (list_a) - (list_b)
Which will result in: user1, user4
Remove multiple items from a list
2
3 replies