python 字典 怎样增加一个元素

python 字典 怎样增加一个元素,第1张

>>> a=['one','two','three']>>> b={}>>> [bsetdefault(x,y) for x,y in enumerate(a)]['one', 'two', 'three']>>> b{0: 'one', 1: 'two', 2: 'three'}>>>

contextdict = {}
for i, line in enumerate(open("contexttxt", 'rt')):
    contextdict[i] = line

s={}
s['aaaa']=['11111','22222','33333','4444444']
s['bbbb']=['aaaaa']
print s
运行结果:{'aaaa': ['11111', '22222', '33333', '4444444'], 'bbbb': ['aaaaa']}
你想表达的是这意思吗

>>> keys = ['a', 'b', 'c']
>>> values = [1, 2, 3]
>>> dictionary = dict(zip(keys, values))
>>> print(dictionary)
{'a': 1, 'b': 2, 'c': 3}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/10379909.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-08
下一篇 2023-05-08

发表评论

登录后才能评论

评论列表(0条)

保存