6 examples of 'replace value in dictionary python' in Python

Every line of 'replace value in dictionary python' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
482def replace(self, key, new_container):
483 dict.__setitem__(self, key, new_container)
44def list_replace(_list, index, value):
45 _list[index] = value
15def __setitem__(self, key, value):
16 if '-' in key:
17 key = key.replace('-', '_')
18
19 if isinstance(value, dict) and not isinstance(value, AttributeDict):
20 value = AttributeDict(value)
21 dict.__setitem__(self, key, value)
73def dictRemove(dct, value):
74 try:
75 del dct[value]
76 except KeyError:
77 pass
45def replace_keys(original, mapping):
46 """Recursively replace any keys in original with their values in mappnig.
47
48 :param original: The dictionary to replace keys in.
49 :param mapping: A dict mapping keys to new keys.
50
51 :returns: Original with keys replaced via mapping.
52 """
53 return original if not type(original) in (dict, list) else {
54 mapping.get(k, k): {
55 dict: lambda: replace_keys(v, mapping),
56 list: lambda: [replace_keys(vi, mapping) for vi in v]
57 }.get(type(v), lambda: v)() for k, v in original.iteritems()}
75def update(self, d):
76 for key in d.keys():
77 # Ignore invalid keys, rather than raising an exception.
78 try:
79 skey = str(key)
80 except:
81 continue
82 if skey==key and not skey.startswith('_'):
83 self.__dict__[skey] = d[key]

Related snippets