1. 程式人生 > >Python字典操作:刪除、增加元素

Python字典操作:刪除、增加元素

元素 字典 body pos mic class bsp pytho ams

一)增加一個或多個元素

d = {‘a‘: 1}

d.update(b=2) print(d) -->{‘a‘: 1, ‘b‘: 2} d.update(c=3, d=4) print(d) -->{‘a‘: 1, ‘c‘: 3, ‘b‘: 2, ‘d‘: 4} d[‘e‘] = 5 print(d) -->{‘a‘: 1, ‘c‘: 3, ‘b‘: 2, ‘e‘: 5, ‘d‘: 4} d.update({‘f‘: 6, ‘g‘: 7}) print(d) -->{‘a‘: 1, ‘c‘: 3, ‘b‘: 2, ‘e‘: 5, ‘d‘: 4, ‘g‘
: 7, ‘f‘: 6}
二)刪除一個或多個元素 def remove_key(d, key): r = dict(d) del r[key] return r x = {1: 2, 3: 4, 4: 3, 2: 1, 0: 0} x.pop(1) print(x) x = {1: 2, 3: 4, 4: 3, 2: 1, 0: 0} del x[1] print(x) x = {1: 2, 3: 4, 4: 3, 2: 1, 0: 0} print(remove_key(x, 1)) print(x) ‘‘‘
輸出: {0: 0, 2: 1, 3: 4, 4: 3}
{0: 0, 2: 1, 3: 4, 4: 3} {0: 0, 2: 1, 3: 4, 4: 3} {0: 0, 1: 2, 2: 1, 3: 4, 4: 3} ‘‘‘

Python字典操作:刪除、增加元素