Posts by user136156 • 21 points
1 post
-
2
votes2
answers5301
viewsA: Delete value from a Python dictionary
It is not a good idea to remove keys from an eternity while you walk through it, use list comprehension for that case. Example: dic = { 'a': 13, 'b': 0, 'c': 52, 'd': 0, 'e': 0, 'f': 79 } newDic = {…