I am just looking for help to delete a specific dictionary in a list with a specific stipulation without using the index number.
For example, how would I remove supplier with supplier_id=103
in the following
suppliers = [
{"contact_firstname": "Jason",
"supplier_id": 101},
{"contact_firstname": "Paul",
"supplier_id": 102},
{"contact_firstname": "Mark",
"supplier_id": 103}]