最佳答案
我有一个 Python 中的 dictionary,我想要做的是以列表的形式从中获取一些值,但是我不知道这个实现是否支持。
myDictionary.get('firstKey') # works fine
myDictionary.get('firstKey','secondKey')
# gives me a KeyError -> OK, get is not defined for multiple keys
myDictionary['firstKey','secondKey'] # doesn't work either
有什么办法能让我做到吗?在我的例子中,它看起来很简单,但是让我们假设我有一个包含20个条目的字典,并且我想得到5个键。除了做以下事情还有别的办法吗?
myDictionary.get('firstKey')
myDictionary.get('secondKey')
myDictionary.get('thirdKey')
myDictionary.get('fourthKey')
myDictionary.get('fifthKey')