如何查找字典值的长度
我对所有这些都还很陌生,所以这可能是一个noobie问题。但是我正在寻找字典值的长度…但是我不知道该怎么做。
例如
d = {'key':['hello', 'brave', 'morning', 'sunset', 'metaphysics']}
我想知道是否可以找到 或字典值 。
谢谢
回答:
当然。在这种情况下,您只需执行以下操作:
length_key = len(d['key']) # length of the list stored at `'key'` ...
很难说您为什么真正想要这个,但是,也许创建另一个将键映射到值长度的字典很有用:
length_dict = {key: len(value) for key, value in d.items()}length_key = length_dict['key'] # length of the list stored at `'key'` ...
以上是 如何查找字典值的长度 的全部内容, 来源链接: utcz.com/qa/422559.html