Python3 字典(Dictionary)
Python3 字典(Dictionary)
字典是一个无序、可变和有索引的集合。它是一种可变容器模型,而且可存储任意类型对象。
1. 字典的定义
在 Python 中,字典用花括号编写,拥有键和值。
字典的每个键值 key=>value 对用冒号 : 分割,每个对之间用逗号(,)分割,整个字典包括在花括号 {} 中 ,格式如下所示:
d = {key1 : value1, key2 : value2, key3 : value3 }
键必须是唯一的,但值则不必。
值可以取任何数据类型,但键必须是不可变的,如字符串,数字。
一个简单的字典范例:
dict = {'name': 'yapf', 'likes': 123, 'url': 'www.yapf.com'}
也可如此创建字典:
dict1 = { 'abc': 456 } dict2 = { 'abc': 123, 98.6: 37 }
2. 访问字典元素
把相应的键放入到方括号中,如下范例:
Python3 范例
#!/usr/bin/python3 dict = {'Name': 'yapf', 'Age': 7, 'Class': 'First'}
print ("dict['Name']: ", dict['Name']) print ("dict['Age']: ", dict['Age'])
相关文章
- Python 中文编码
- Python 列表 List
- Python 日期和时间
- Python 高级链表
- Python 二叉树
- Python 回溯
- Python3 运算符
- Python3 XML 解析
- Python3 JSON 解析
- Python log() 函数
- Python File readlines() 方法
- Python os.chown() 方法
- Python os.mkdir() 方法
- Python os.rename() 方法
- Python os.renames() 方法
- Python os.symlink() 方法
- Python decode()方法
- Python isspace()方法
- Python ljust()方法
- Python time mktime()方法