字典 values() 方法
values() 方法用于获取字典的所有值,它返回一个视图对象,该对象包含字典的所有值作为列表。
用法:
dictionary_name.values()
参数:
- 它不接受任何参数。
返回值:
这个方法的返回类型是<class 'dict_values'>
,它将所有值作为包含所有值列表的视图对象返回。
例:
# Python Dictionary values() Method with Example
# dictionary declaration
student = {
"roll_no":101,
"name":"Shivang",
"course":"B.Tech",
"perc":98.5
}
# printing dictionary
print("data of student dictionary...")
print(student)
# getting all values
x = student.values()
print(x)
# printing type of values() Method
print('Type is:',type(student.values()))
# changing the value
# it will effect the value of view object also
student['course'] = 'MCA'
# printing dictionary
print("data of student dictionary...")
print(student)
# getting all values
x = student.values()
print(x)
输出
data of student dictionary... {'roll_no':101, 'name':'Shivang', 'course':'B.Tech', 'perc':98.5} dict_values([101, 'Shivang', 'B.Tech', 98.5]) Type is: <class 'dict_values'> data of student dictionary... {'roll_no':101, 'name':'Shivang', 'course':'MCA', 'perc':98.5} dict_values([101, 'Shivang', 'MCA', 98.5])
相关用法
- 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 Pandas DataFrame.fillna()用法及代码示例
注:本文由纯净天空筛选整理自 Python Dictionary values() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。