我有这个 python 字典“mydict”,包含数组,它看起来像这样:
mydict = dict(
one=['foo', 'bar', 'foobar', 'barfoo', 'example'],
two=['bar', 'example', 'foobar'],
three=['foo', 'example'])
我想用“someotherword”替换所有出现的“example”。
虽然我已经可以想到几种方法来做到这一点,但是否有一种最“pythonic”的方法来实现这一点?