Answers for "filter out keys from a dictionary python"

1

python filter None dictionary

d = dict(a = 1, b = None, c = 3)

filtered = dict(filter(lambda item: item[1] is not None, d.items()))

print(filtered)
{'a': 1, 'c': 3}
Posted by: Guest on August-07-2020
0

filter dict by list of keys python

dict_you_want = { your_key: old_dict[your_key] for your_key in your_keys }
Posted by: Guest on March-26-2020

Code answers related to "filter out keys from a dictionary python"

Python Answers by Framework

Browse Popular Code Answers by Language