Python values() 方法用于从字典中收集所有值。它不接受任何参数并返回值字典。如果字典没有值,它返回一个空字典。下面给出了该方法的语法和示例。
签名
values()
参数
无参数
返回
它返回一个值字典。
让我们看一些 values() 方法的例子来理解它的函数。
Python字典values()方法示例1
这是一个简单的例子,它返回字典中的所有值。下面给出一个例子。
# Python dictionary values() Method
# Creating a dictionary
einventory = {'Fan':200, 'Bulb':150, 'Led':1000}
# Calling function
stock = einventory.values()
# Displaying result
print("Stock available",einventory)
输出:
Stock available {'Fan':200, 'Bulb':150, 'Led':1000}
Python字典values()方法示例2
如果字典已经是空的,这个方法也会返回一个空字典,除了任何错误或异常。请参阅下面的示例。
# Python dictionary values() Method
# Creating a dictionary
einventory = {}
# Calling function
stock = einventory.values()
# Displaying result
print("Stock available",einventory)
输出:
Stock available {}
Python字典values()方法示例3
此示例使用各种方法来获取有关字典的信息,例如长度、键等。
# Python dictionary values() Method
# Creating a dictionary
einventory = {'Fan':200, 'Bulb':150, 'Led':1000}
# Applying functions
length = len(einventory)
print("Total number of values:",length)
keys = einventory.keys()
print("All the Keys:",keys)
item = einventory.items()
print("Items:",einventory)
p = einventory.popitem()
print("Deleted items:",p)
stock = einventory.values()
print("Stock available",einventory)
输出:
Total number of values:3 All the Keys:dict_keys(['Fan', 'Bulb', 'Led']) Items:{'Fan':200, 'Bulb':150, 'Led':1000} Deleted items:('Led', 1000) Stock available {'Fan':200, 'Bulb':150}
相关用法
- Python Dictionary values()用法及代码示例
- Python Dictionary fromkeys()用法及代码示例
- Python Dictionary clear()用法及代码示例
- Python Dictionary update()用法及代码示例
- Python Dictionary pop()用法及代码示例
- Python Dictionary setdefault()用法及代码示例
- Python Dictionary popitem()用法及代码示例
- Python Dictionary has_key()用法及代码示例
- Python Dictionary get()用法及代码示例
- Python Dictionary items()用法及代码示例
- Python Dictionary copy()用法及代码示例
- Python Dictionary keys()用法及代码示例
- Python Decimal shift()用法及代码示例
- Python Decimal next_plus()用法及代码示例
- Python Decimal logical_and()用法及代码示例
- Python Decimal rotate()用法及代码示例
- Python Decimal max_mag()用法及代码示例
- Python Datetime.replace()用法及代码示例
- Python Decimal as_integer_ratio()用法及代码示例
- Python DataFrame.to_excel()用法及代码示例
注:本文由纯净天空筛选整理自 Python Dictionary values() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。