I have a list with dictionaries:
list_with_dicts = [{"nbr": 1, "id": 11}, {"nbr": 2, "id": 13}, {"nbr": 3, "id": 15}, ...]
I have a list that contains all the id:s I want to remove from the list with dictionaries:
ids = [11, 15, ...]
How can I do this effectively? I saw this answer here, however it does not cover if I need to iterate through the ids
list.