标签:python update pre inf RKE res class 清空 ring
字典是另一种可变容器模型,且可存储任意类型对象。
字典的每个键值 key=>value 对用冒号 : 分割,每个键值对之间用逗号 , 分割,整个字典包括在花括号 {} 中 ,格式如下所示:
d = {key1 : value1, key2 : value2 }
一个简单的字典实例:
dict = {‘Alice‘: ‘2341‘, ‘Beth‘: ‘9102‘, ‘Cecil‘: ‘3258‘}
{‘python_version‘: ‘CPython 3.5.0‘, ‘platform‘: ‘Windows-7-6.1.7601-SP1‘, ‘httprunner_version‘: ‘1.5.14‘} :搞接口自动化里面的一个例子
把相应的键放入熟悉的方括弧,如下实例:
dict[‘Name‘]
dict[‘python_version‘]
dict[‘Age‘] = 8; # update existing entry
dict[‘School‘] = "DPS School"; # Add new entry
del dict[‘Name‘]; # 删除键是‘Name‘的条目
dict.clear(); # 清空词典所有条目
del dict ; # 删除词典
标签:python update pre inf RKE res class 清空 ring
原文地址:https://www.cnblogs.com/yuanyuan2017/p/9799883.html