How do I remove random items from a dictionary in Python?
I have to remove a specified number of items from a dictionary and so I tried to use dict.popitem
which I thought was random, but it is seems it is not.
As the docs say:
Remove and return an arbitrary (key, value) pair from the dictionary.
For my problem, suppose I have a dictionary like (an example):
>>> d = dict(zip((string.ascii_lowercase), range(1, 10)))
>>> d
{'a': 1, 'c': 3, 'b': 2, 'e': 5, 'd': 4, 'g': 7, 'f': 6, 'i': 9, 'h': 8}
Now I need to remove some items from it (the count is specified by the user).
So I wrote this:
>>> for _ in range(4): # assume 4 items have to removed
... d.popitem()
...
('a', 1)
('c', 3)
('b', 2)
('e', 5)
But the problem with this code is, every time the script is run, popitem()
pops exactly the same items. You are free to test this, I have already tried it multiple times.
So my question is:
- Why isn't
popitem()
working the way it should? Is removing arbitrary items not random? - How do I remove random items from a dictionary?
popitem()
is arbitrary but not random. If you want to access a random elementIs this what you're talking about?
Removing an "arbitrary" element means that the function can remove whatever item it likes. That doesn't mean that it has to be especially random about it.
For real randomness you should use the
random
module. For example:Arbitrary does not mean the same thing as random. Arbitrary simply means that any of the items can be returned and nothing should be assumed about the order they are returned in.
I do not claim this is the best or most efficient way, but one way is:
For removing a specified number of items, I would use
random.sample
instead of making repeated calls todict.keys
andrandom.choice
try this one I was trying to achieve the same { arbitrarily any item from dictionary } but it always deleted url but when I changed it to
title is deleted
I guess It deletes items from the list which are having highest ASCII value, \ just guessing