字典的每个健值的展现方式是:key:value用冒号分割;
·键值之间为逗号分割;
·整个字典用大括号{}将键值括起来;
·字典是无序的,它不能通过偏移来存取,只能通过键来存取;
·键必须是唯一;
·键必须是不可变的数据类型,比如,数字,字符串,元组等,列表等可变对象不能作为键;
·键值可以是任意类型的对象;
访问
scores_dict= {'语文': 100, '数学': 90, '英语': 91} print(scores_dict['语文']) # 通过键“语文”获取对应的值
添加
scores_dict= {'语文': 100, '数学': 90, '英语': 91} scores_dict['物理'] =97# 添加 ‘物理’: 97print(scores_dict) # {'语文': 100, '数学': 90, '英语': 91, '物理': 97}
删除
scores_dict= {'语文': 100, '数学': 90, '英语': 91} delscores_dict['数学'] # 删除 ’语文‘: 105print(scores_dict) # 输出 {'语文': 100, '英语': 91}