List of dict in Python
- by plalex
Hi everybody,
I've got a list of dict in Python:
dico_cfg = {'name': entry_name, 'ip': entry_ip, 'vendor': combo_vendor, 'stream': combo_stream}
self.list_cfg.append(dico_cfg)
I append to my list a lot of dict in the same way.
Now I would like to delete one dict and only one dict in this list? What is the best way to proceed?
I've try with…