博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python字典values()方法与示例
阅读量:2531 次
发布时间:2019-05-11

本文共 1432 字,大约阅读时间需要 4 分钟。

字典values()方法 (Dictionary values() Method)

values() method is used to get all values of a dictionary, it returns a view object that contains the all values of the dictionary as a list.

values()方法用于获取字典的所有值,它返回一个包含字典所有值的列表的视图对象。

Syntax:

句法:

dictionary_name.values()

Parameter(s):

参数:

  • It does not accept any parameter.

    它不接受任何参数。

Return value:

返回值:

The return type of this method is <class 'dict_values'>, it returns all values as a view object that contains a list of all values.

此方法的返回类型为<class'dict_values'> ,它将所有值作为包含所有值列表的视图对象返回。

Example:

例:

# Python Dictionary values() Method with Example# dictionary declarationstudent = {
"roll_no": 101, "name": "Shivang", "course": "B.Tech", "perc" : 98.5}# printing dictionaryprint("data of student dictionary...")print(student)# getting all valuesx = student.values()print(x)# printing type of values() Methodprint('Type is: ',type(student.values()))# changing the value# it will effect the value of view object alsostudent['course'] = 'MCA'# printing dictionaryprint("data of student dictionary...")print(student)# getting all valuesx = student.values()print(x)

Output

输出量

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:  
data of student dictionary...{'roll_no': 101, 'name': 'Shivang', 'course': 'MCA', 'perc': 98.5}dict_values([101, 'Shivang', 'MCA', 98.5])

翻译自:

转载地址:http://wytzd.baihongyu.com/

你可能感兴趣的文章
sql server dba
查看>>
visualvm
查看>>
docker(4):coreos+docker+rancher真厉害
查看>>
设计模式之代理模式,学习笔记
查看>>
在Qsys中创建用户自定义IP
查看>>
【leetcode】Container With Most Water
查看>>
Python -- machine learning, neural network -- PyBrain 机器学习 神经网络
查看>>
一道dp题目
查看>>
mysql中间件研究(tddl atlas cobar sharding-jdbc)
查看>>
Cast-128 加密算法和 MyPassWord 的破解
查看>>
4.28下午 听力611
查看>>
ActiveMQ学习笔记(1)----初识ActiveMQ
查看>>
Java与算法之(2) - 快速排序
查看>>
Windows之IOCP
查看>>
机器学习降维之主成分分析
查看>>
CTP2交易所成交回报
查看>>
WebSocket & websockets
查看>>
《机器学习实战》学习笔记第二章 —— K-近邻算法
查看>>
uni-app 引入本地iconfont的正确姿势以及阿里图标引入
查看>>
DSB
查看>>