Python Forum
Deleting value from dictionary.
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Deleting value from dictionary.
#1
I was wondering how to remove values from a key if the length of the value was less than a certain amount. I'm not trying to remove the entire key/item. All keys and values are strings in this case.
Reply
#2
Do you mean like this?
>>> thedict = {
...     'aaaa': {
...         '123': 'One Two Three',
...         '234': 'Two Three Four'
...     },
...     'bbbb': {
...         '123': 'One Two Three',
...         '456': 'Four five six',
...     }
... }
>>> thedict
{'aaaa': {'123': 'One Two Three', '234': 'Two Three Four'}, 'bbbb': {'123': 'One Two Three', '456': 'Four five six'}}
>>> del thedict['bbbb']['123']
>>> thedict
{'aaaa': {'123': 'One Two Three', '234': 'Two Three Four'}, 'bbbb': {'456': 'Four five six'}}
>>>
Reply
#3
Yes, but is it possible to not hard-code it? For example, if your'e given a dictionary, and you need to remove values from keys where the length of the word is lets say less than 5.
So like:
dictionary = {"hello":["hey", "dinosaur", "dragon"], "fire:["volcano", "explosion", "boom"]}
So i need to remove "hey" and "boom".

I apologize if i'm difficult to understand. I'm new to python and still not quite familiar with the terminology.
Reply
#4
(May-18-2018, 01:38 AM)dbdb12 Wrote: All keys and values are strings in this case.
(May-18-2018, 02:00 AM)dbdb12 Wrote: So like:
dictionary = {"hello":["hey", "dinosaur", "dragon"], "fire:["volcano", "explosion", "boom"]}
well, note that your statement and your example contradict to each other. In your example the key is a string, the value is a list. And that list has number of elements that are strings.
anyway, something like this should work:
dictionary = {"hello":["hey", "dinosaur", "dragon"], "fire":["volcano", "explosion", "boom"]}
new_dict = dict()
for key, value in dictionary.items():
    new_dict[key] = [s for s in value if len(s)>5]
print(new_dict)
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  deleting item from dictionary Skaperen 6 3,090 Feb-20-2019, 01:18 AM
Last Post: Skaperen

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020