本文介绍了编辑字典列表中的值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
my_dicts = [
{ 'key1' : 'value1',
'key2' : 'value2' },
{ 'key1' : 'value1',
'key2' : 'value2' },
{ 'key1' : 'value1',
'key2' : 'value2' }]
使用'value3'替换所有value2实例的最有效的方法是什么?
What would be the most efficient way to replace all instances of 'value2' with 'value3' ?
推荐答案
我没有做任何时间,但是你可能不会比
I did not do any timings, but you probably can't get much better than
for d in my_dicts:
d.update((k, "value3") for k, v in d.iteritems() if v == "value2")
这篇关于编辑字典列表中的值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!