This paste expires on 2023-04-13 14:14:51.384095. Repaste, or download this paste. Toggle word wrap. Pasted through web.
a = {'a': 1, 'b': 2, 'c': 3}
b = {key: value for key, value in a.items() if key != 'c'}
print(a, b)