Posts: 4,646
Threads: 1,493
Joined: Sep 2016
i have item in a dictionary that needs to be deleted. which way is more pythonic?
del mydict['deleteme']
mydict.pop('deleteme')
i like the 2nd form because i can use it with a 2nd argument in cases where the item to be deleted may not actually be in the dictionary.
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Posts: 4,646
Threads: 1,493
Joined: Sep 2016
so if i don't need the item i should use del instead of doing .pop without an assignment?
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Posts: 4,646
Threads: 1,493
Joined: Sep 2016
yeah, even if the return value is ignore, it would be at least making it available. there is a "__delitem__" method for a dictionary. that might be intended for del.
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Posts: 4,646
Threads: 1,493
Joined: Sep 2016
Feb-20-2019, 01:18 AM
(This post was last modified: Feb-20-2019, 01:18 AM by Skaperen.)
i need to be sure i don't replace instance of this where the returned value is used or a 2nd argument is given. in the latter, even when the return value is ignored, it ignores the case where the item is not actually present, avoiding raising an except, effectively operating as "be sure this item is not present".
results are similar in python3.
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.