Python 的 dict.values()
方法返回一个视图对象,将字典的值显示为列表。
注意
视图对象提供字典条目的动态视图,这意味着当字典更改时,视图对象会反映这些更改。
参数
无参数。
返回值
将字典的值显示为列表的视图对象。
例子
基本用法
返回字典 scores
值的视图对象:
scores = {'Andrew': 77, 'Matt': 80, 'Bob': 90}
scores.values()
dict_values([77, 80, 90])
动态行为
检查视图对象是否反映了添加到scores
字典中的99
的新添加值:
scores = {'Andrew': 77, 'Matt': 80, 'Bob': 90}
print("Original Values: ", scores.values())
scores.update({'Ben': 99})
print("Updated Values: ", scores.values())
Original Values: dict_values([77, 80, 90])
Updated Values: dict_values([77, 80, 90, 99])
请注意,视图对象反映了 Ben 新增的 99
值。
相关用法
- Python Dictionary values()用法及代码示例
- Python Dictionary popitem方法用法及代码示例
- Python Dictionary fromkeys方法用法及代码示例
- Python Dictionary setdefault方法用法及代码示例
- Python Dictionary update()用法及代码示例
- Python Dictionary setdefault()用法及代码示例
- Python Dictionary clear()用法及代码示例
- Python Dictionary get方法用法及代码示例
- Python Dictionary items方法用法及代码示例
- Python Dictionary keys方法用法及代码示例
- Python Dictionary pop()用法及代码示例
- Python Dictionary popitem()用法及代码示例
- Python Dictionary has_key()用法及代码示例
- Python Dictionary get()用法及代码示例
- Python Dictionary items()用法及代码示例
- Python Dictionary update方法用法及代码示例
- Python Dictionary copy()用法及代码示例
- Python Dictionary clear方法用法及代码示例
- Python Dictionary copy方法用法及代码示例
- Python Dictionary keys()用法及代码示例
- Python Dictionary pop方法用法及代码示例
- Python Dictionary fromkeys()用法及代码示例
- Python Django Distance用法及代码示例
- Python Django Distance.unit_attname用法及代码示例
- Python Django Distance.__getattr__用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 Python Dictionary | values method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。