赞
踩
要往python字典对象中添加元素(键值对),可以使用下方介绍的两种方法:
- #使用update()方法添加元素
- >>> dict1 = {}
- >>> dict1.update({'a':1})
- >>> dict1
- {'a': 1}
- >>> dict1.update({'a':2})
- >>> dict1
- {'a': 2}
- #使用键值对赋值的方式添加元素
- >>> dict1['b'] = 3
- >>> dict1
- {'a': 2, 'b': 3}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。