# 字典的创建
# 创建空字典1
d = {}
print(d)
# 创建空字典2
d = dict()
print(d)
# 创建有值的字典, 每一组数据用冒号隔开, 每一对键值对用逗号隔开
d = {"one":1, "two":2, "three":3}
print(d)
# 用dict创建有内容字典1
d = dict({"one":1, "two":2, "three":3})
print(d)
# 用dict创建有内容字典2
# 利用关键字参数
d = dict(one=1, two=2, three=3)
print(d)
#
d = dict( [("one",1), ("two",2), ("three",3)])
print(d)
{}
{}
{‘one‘: 1, ‘two‘: 2, ‘three‘: 3}
{‘one‘: 1, ‘two‘: 2, ‘three‘: 3}
{‘one‘: 1, ‘two‘: 2, ‘three‘: 3}
{‘one‘: 1, ‘two‘: 2, ‘three‘: 3}
# 访问数据
d = {"one":1, "two":2, "three":3}
# 注意访问格式
# 中括号内是键值
print(d["one"])
d["one"] = "eins"
print(d)
# 删除某个操作
# 使用del操作
del d["one"]
print(d)
1
{‘one‘: ‘eins‘, ‘two‘: 2, ‘three‘: 3}
{‘two‘: 2, ‘three‘: 3}
# 成员检测, in, not in
# 成员检测检测的是key内容
d = {"one":1, "two":2, "three":3}
if 2 in d:
print("value")
if "two" in d:
print("key")
if ("two",2) in d:
print("kv")
key
d = {"one":1, "two":2, "three":3}
# 常规字典生成式
dd = {k:v for k,v in d.items()}
print(dd)
# 加限制条件的字典生成式
dd = {k:v for k,v in d.items() if v % 2 == 0}
print(dd)
{‘one‘: 1, ‘two‘: 2, ‘three‘: 3}
{‘two‘: 2}
# 通用函数: len, max, min, dict
# str(字典): 返回字典的字符串格式
d = {"one":1, "two":2, "three":3}
print(str(d))
{‘one‘: 1, ‘two‘: 2, ‘three‘: 3}
# clear: 清空字典
# items: 返回字典的键值对组成的元组格式
d = {"one":1, "two":2, "three":3}
i = d.items()
print(type(i))
print(i)
<class ‘dict_items‘>
dict_items([(‘one‘, 1), (‘two‘, 2), (‘three‘, 3)])
# keys:返回字典的键组成的一个结构
k = d.keys()
print(type(k))
print(k)
<class ‘dict_keys‘>
dict_keys([‘one‘, ‘two‘, ‘three‘])
# values: 同理,一个可迭代的结构
v = d.values()
print(type(v))
print(v)
<class ‘dict_values‘>
dict_values([1, 2, 3])
# get: 根据制定键返回相应的值, 好处是,可以设置默认值
d = {"one":1, "two":2, "three":3}
print(d.get("on333"))
# get默认值是None,可以设置
print(d.get("one", 100))
print(d.get("one333", 100))
None
1
100
# fromkeys: 使用指定的序列作为键,使用一个值作为字典的所有的键的值
l = ["eins", "zwei", "drei"]
# 注意fromkeys两个参数的类型
# 注意fromkeys的调用主体
d = dict.fromkeys(l, "hahahahahah")
print(d)
{‘eins‘: ‘hahahahahah‘, ‘zwei‘: ‘hahahahahah‘, ‘drei‘: ‘hahahahahah‘}
原文:https://www.cnblogs.com/zifeng001/p/10822773.html