在本教程中,我们将借助示例了解 Python Dictionary values() 方法。
values()
方法返回一个视图对象,该对象显示字典中所有值的列表。
示例
marks = {'Physics':67, 'Maths':87}
print(marks.values())
# Output: dict_values([67, 87])
用法:
用法:
dictionary.values()
参数:
values()
方法不带任何参数。
返回:
values()
方法返回一个视图对象,该对象显示给定字典中所有值的列表。
示例 1:从字典中获取所有值
# random sales dictionary
sales = { 'apple': 2, 'orange': 3, 'grapes': 4 }
print(sales.values())
输出
dict_values([2, 4, 3])
示例 2:修改字典时 values() 如何工作?
# random sales dictionary
sales = { 'apple': 2, 'orange': 3, 'grapes': 4 }
values = sales.values()
print('Original items:', values)
# delete an item from dictionary
del[sales['apple']]
print('Updated items:', values)
输出
Original items: dict_values([2, 4, 3]) Updated items: dict_values([4, 3])
视图对象values
本身并不返回sales
项目值的列表,但它返回字典所有值的视图。
如果列表随时更新,则更改会反映在视图对象本身上,如上面的程序所示。
相关用法
- Python Dictionary clear()用法及代码示例
- Python Dictionary update()用法及代码示例
- Python Dictionary setdefault()用法及代码示例
- Python Dictionary pop()用法及代码示例
- Python Dictionary popitem()用法及代码示例
- Python Dictionary has_key()用法及代码示例
- Python Dictionary get()用法及代码示例
- Python Dictionary items()用法及代码示例
- Python Dictionary copy()用法及代码示例
- Python Dictionary keys()用法及代码示例
- Python Dictionary fromkeys()用法及代码示例
- Python Decimal shift()用法及代码示例
- Python Decimal next_plus()用法及代码示例
- Python Decimal rotate()用法及代码示例
- Python Decimal max_mag()用法及代码示例
- Python Datetime.replace()用法及代码示例
- Python DateTime转integer用法及代码示例
- Python Decimal as_integer_ratio()用法及代码示例
- Python Decimal is_subnormal()用法及代码示例
- Python DataFrame.to_excel()用法及代码示例
注:本文由纯净天空筛选整理自 Python Dictionary values()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。