Python 字典 Dictionary keys()方法
Python 字典 Dictionary keys()方法
Python 字典(Dictionary) keys() 函数以列表返回一个字典所有的键。
语法
keys()方法语法:
dict.keys()
参数
- NA。
返回值
返回一个字典所有的键。
实例
以下实例展示了 keys()函数的使用方法:
#!/usr/bin/python dict = {'Name': 'Zara', 'Age': 7} print "Value : %s" % dict.keys()
以上实例输出结果为:
Value : ['Age', 'Name']
相关文章
- Python Number 数字
- Python2 与 Python3 版本区别
- Python 算法理由
- Python3 环境搭建
- Python3 基础语法
- Python3 解释器
- Python3 数字(Number)
- Python3 错误和异常
- Python shuffle() 函数
- Python File tell() 方法
- Python os.close() 方法
- Python os.dup() 方法
- Python os.fchmod() 方法
- Python os.isatty() 方法
- Python os.open() 方法
- Python encode()方法
- Python isalnum()方法
- Python rfind()方法
- Python splitlines()方法
- Python List max()方法