字典创建与删除

(1)创建字典的八种方法
1.创建空字典

dic = {} type(dic) # <type 'dict'>

2.直接赋值创建

dic = {'spam':1, 'egg':2, 'bar':3}

print(dic)

# {'bar': 3, 'egg': 2, 'spam': 1}

3.通过关键字dict和关键字参数创建

dic = dict(spam = 1, egg = 2, bar =3)

print(dic)

# {'bar': 3, 'egg': 2, 'spam': 1}

4.通过二元组列表创建

lis = [('spam', 1), ('egg', 2), ('bar', 3)]

dic = dict(lis)

print(dic)

# {'bar': 3, 'egg': 2, 'spam': 1}

5.dict和zip结合创建

dic = dict(zip('abc', [1, 2, 3]))

print(dic)

# {'a': 1, 'c': 3, 'b': 2}

6.通过字典推导式创建

dic = {i:2*i for i in range(3)}

print(dic)

# {0: 0, 1: 2, 2: 4}

7.通过dict.fromkeys()创建

通常用来初始化字典, 设置value的默认值

dic = dict.fromkeys(range(3), 'x')

print(dic)

# {0: 'x', 1: 'x', 2: 'x'}

8.其他方式

lis = ['x', 1, 'y', 2, 'z', 3]

dic = dict(zip(lis[::2], lis[1::2]))

print(dic)

# {'y': 2, 'x': 1, 'z': 3}

(2)python删除字典的四种方法
1.python字典的clear()方法(删除字典内所有元素)

#!/usr/bin/python
# -*- coding: UTF-8 -*-
dict = {'name': '我的博客地址', 'alexa': 10000, 'url': 'http://blog.csdn.net/uuihoo/'}
dict.clear(); # 清空词典所有条目
2.python字典的pop()方法(删除字典给key所对应的值,返回值为被删除的值)

#!/usr/bin/python
# -*- coding: UTF-8 -*-
site= {'name': '我的博客地址', 'alexa': 10000, 'url':'http://blog.csdn.net/uuihoo/'}
pop_obj=site.pop('name') # 删除要删除的键值对,如{'name':'我的博客地址'}这个键值对
print pop_obj # 输出 :我的博客地址
3. Python字典的popitem()方法(随机返回并删除字典中的一对键和值)

#!/usr/bin/python
# -*- coding: UTF-8 -*-
site= {'name': '我的博客地址', 'alexa': 10000, 'url':'http://blog.csdn.net/uuihoo/'}
pop_obj=site.popitem() # 随机返回并删除一个键值对
print pop_obj # 输出结果可能是{'url','http://blog.csdn.net/uuihoo/'}
4. del 全局方法(能删单一的元素也能清空字典,清空只需一项操作)

#!/usr/bin/python
# -*- coding: UTF-8 -*-
site= {'name': '我的博客地址', 'alexa': 10000, 'url':'http://blog.csdn.net/uuihoo/'}
del site['name'] # 删除键是'name'的条目 
del site # 清空字典所有条目
 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值