Python的字典是非常好用的,但是如何在已知Value的情况获得对应的Key呢?
- 一个字典的Key是不一样的
- 一个字典的Vaulev是可能重复的
根据Python官方的描述:
If keys, values and items views are iterated over with no intervening modifications to the dictionary, the order of items will directly correspond.
在迭代的过程中,没有对字典进行修改,那么Key和Value总是保持对应关系。