黑猴子的家:python 字典操作

字典一种key - value 的数据类型,使用就像我们上学用的字典,通过笔划、字母来查对应页的详细内容

字典的语法

info = {
    'stu1101': "TengLan Wu",
    'stu1102': "LongZe Luola",
    'stu1103': "XiaoZe Maliya",
}

字典的特性

  • dict是无序的
  • key必须是唯一的,so 天生去重

1、合并

将b合并到info中,如果info中有,就修改,没有就添加

>>> info = {
...     'stu1101': "TengLan Wu",
...     'stu1102': "LongZe Luola",
...     'stu1103': "XiaoZe Maliya",
... }
>>> b = {
...     'stu1101': "hei hou zi de jia",
...     1:3,
...     2:5
... }
>>> info.update(b)
>>> info
{'stu1101': 'hei hou zi de jia', 'stu1102': 'LongZe Luola', 'stu1103': 'XiaoZe Maliya', 1: 3,
 2: 5}

2、查询

>>> info['stu1101']
'hei hou zi de jia'

3、修改

>>> info['stu1101'] = "武老师"
>>> info
{'stu1101': '武老师', 'stu1102': 'LongZe Luola', 'stu1103': 'XiaoZe Maliya', 1: 3,
 2: 5}

4、添加

>>> info
{'stu1101': '武老师', 'stu1102': 'LongZe Luola', 'stu1103': 'XiaoZe Maliya'}

>>> info['stu1104'] = "canglaoshi"
>>> info
{'stu1101': '武老师', 'stu1102': 'LongZe Luola',
 'stu1103': 'XiaoZe Maliya', 'stu1104': 'canglaoshi'}

5、删除字典

>>> del info
>>> info
Traceback (most recent call last):
  File "", line 1, in 
NameError: name 'info' is not defined

6、删除字典,指定的一个值

>>> info = {
...     'stu1101': "TengLan Wu",
...     'stu1102': "LongZe Luola",
...     'stu1103': "XiaoZe Maliya",
... }
>>> info
{'stu1101': 'TengLan Wu', 'stu1102': 'LongZe Luola', 'stu1103': 'XiaoZe Maliya'}

>>> del info['stu1101']
>>> info
{'stu1102': 'LongZe Luola', 'stu1103': 'XiaoZe Maliya'}

#删除字典的指定的一个值,第二种方式
>>> info.pop("stu1102")

>>> info
{'stu1103': 'XiaoZe Maliya'}

7、随机删除

>>> info = {
...     'stu1101': "TengLan Wu",
...     'stu1102': "LongZe Luola",
...     'stu1103': "XiaoZe Maliya",
... }
>>> info
{'stu1101': 'TengLan Wu', 'stu1102': 'LongZe Luola', 'stu1103': 'XiaoZe Maliya'}

#随机删除字典中的一对键和值(一般删除末尾对)。
#如果字典已经为空,却调用了此方法,就报出KeyError异常。
>>> info.popitem()
>>> info
{'stu1101': 'TengLan Wu', 'stu1102': 'LongZe Luola'}

8、查找

>>> info
{'stu1101': 'TengLan Wu', 'stu1102': 'LongZe Luola', 'stu1103': 'XiaoZe Maliya'}

#查找字典没有的,会报异常
>>> info['stu1102']
'LongZe Luola'

>>> info['stu1104']
Traceback (most recent call last):
  File "", line 1, in 
KeyError: 'stu1104'

#查找字典没有的,不会报异常,安全的查找
>>> info.get('stu1104')
>>> info.get('stu1102')
'LongZe Luola'

9、判断是否在字典中

>>> info
{'stu1101': 'TengLan Wu', 'stu1102': 'LongZe Luola', 'stu1103': 'XiaoZe Maliya'}

>>> 'stu1104' in info
false

>>> 'stu1102' in info
true

10、打印所有的value

>>> info
{'stu1102': 'LongZe Luola', 'stu1103': 'XiaoZe Maliya'}

>>> info.values()
dict_values(['LongZe Luola', 'XiaoZe Maliya'])

11、打印所有的key

>>> info
{'stu1102': 'LongZe Luola', 'stu1103': 'XiaoZe Maliya'}

>>> info.keys()
dict_keys(['stu1102', 'stu1103'])

12、多级字典嵌套及操作

av_catalog = {
    "欧美":{
        "www.youporn.com": ["很多免费的,世界最大的","质量一般"],
        "www.pornhub.com": ["很多免费的,也很大","质量比yourporn高点"],
        "letmedothistoyou.com": ["多是自拍,高质量图片很多","资源不多,更新慢"],
        "x-art.com":["质量很高,真的很高","全部收费,屌比请绕过"]
    },
    "日韩":{
        "tokyo-hot":["质量怎样不清楚,个人已经不喜欢日韩范了","听说是收费的"]
    },
    "大陆":{
        "1024":["全部免费,真好,好人一生平安","服务器在国外,慢"]
    }
}

#多级嵌套修改
av_catalog["大陆"]["1024"][1] += ",可以用爬虫爬下来"
print(av_catalog["大陆"]["1024"])
#ouput 
['全部免费,真好,好人一生平安', '服务器在国外,慢,可以用爬虫爬下来']

#如果存在就不修改,如果不存在就创建并赋上默认值
av_catalog.setdefault("大陆",{"www.baidu.com":[1,2]})
print(av_catalog)

13、默认值操作

#setdefault
>>> info
{'stu1102': 'LongZe Luola', 'stu1103': 'XiaoZe Maliya'}

>>> info.setdefault("stu1106","Alex")
'Alex'

>>> info
{'stu1102': 'LongZe Luola', 'stu1103': 'XiaoZe Maliya', 'stu1106': 'Alex'}

>>> info.setdefault("stu1102","龙泽萝拉")
'LongZe Luola'

>>> info
{'stu1102': 'LongZe Luola', 'stu1103': 'XiaoZe Maliya', 'stu1106': 'Alex'}

14、update

#将b合并到info中,如果info中有,就修改,没有就添加
#update 
>>> info
{'stu1102': 'LongZe Luola', 'stu1103': 'XiaoZe Maliya', 'stu1106': 'Alex'}
>>> b = {1:2,3:4, "stu1102":"龙泽萝拉"}
>>> info.update(b)
>>> info
{'stu1102': '龙泽萝拉', 1: 2, 3: 4, 'stu1103': 'XiaoZe Maliya', 'stu1106': 'Alex'}

15、字典转换成一个列表

>>> info
{'stu1102': '龙泽萝拉', 1: 2, 3: 4, 'stu1103': 'XiaoZe Maliya', 'stu1106': 'Alex'}

>>> info.items()
dict_items([('stu1102', '龙泽萝拉'), (1, 2), (3, 4), ('stu1103', 'XiaoZe Maliya'), 
('stu1106', 'Alex')])

16、创建一个新字典

#通过一个列表生成默认dict,有个没办法解释的坑,少用吧这个
>>> dict.fromkeys([1,2,3],'testd')
{1: 'testd', 2: 'testd', 3: 'testd'}

#修改其中一个,全部都修改了, 类似于浅浅的copy
d = dict.fromkeys([6,7,8],[1,{"name":"alex"},444])
print(d)
d[7][1]['name'] = 'Jack Chen'
print(d)

{6: [1, {'name': 'alex'}, 444], 7: [1, {'name': 'alex'}, 444], 
8: [1, {'name': 'alex'}, 444]}

{6: [1, {'name': 'Jack Chen'}, 444], 7: [1, {'name': 'Jack Chen'}, 444], 
8: [1, {'name': 'Jack Chen'}, 444]}

17、for循环字典

print("\n-----------for1  效率高----------")
#for 字典
for i in info:
    print(i,info[i])

print("\n-----------for2  效率低----------")
#for 字典
##会先把dict转成list,数据里大时莫用
for k,v in info.items():
    print(k,v)

你可能感兴趣的:(黑猴子的家:python 字典操作)