Python 字典 Dictionary values()方法
Python 字典 Dictionary values()方法
Python 字典(Dictionary) values() 函数以列表返回字典中的所有值。
语法
values()方法语法:
dict.values()
参数
- NA。
返回值
返回字典中的所有值。
实例
以下实例展示了 values()函数的使用方法:
#!/usr/bin/python dict = {'Name': 'Zara', 'Age': 7} print "Value : %s" % dict.values()
以上实例输出结果为:
Value : [7, 'Zara']
相关文章
- Python pass 语句
- Python 元组
- Python3 环境搭建
- Python3 面向对象
- Python3 内置函数
- Python log10() 函数
- Python min() 函数
- Python modf() 函数
- Python shuffle() 函数
- Python os.isatty() 方法
- Python os.lseek() 方法
- Python os.read() 方法
- Python os.renames() 方法
- Python os.unlink() 方法
- Python os.path() 模块
- Python isalnum()方法
- Python istitle()方法
- Python List sort()方法
- Python time localtime()方法
- Python time time()方法