Python3.9正在积极开发,并计划于今年10月发布。
2月26日,开发团队发布了alpha 4版本。该版本引入了新的合并(|)和更新(|=)运算符,这个新特性几乎影响了所有Python程序员。
我们废话少说,下面来点干货才是正事。
字典
字典,通常称为dict,是Python中最重要的内置数据类型之一。这种数据类型是大小灵活的键值对集合,并且由于它哈希实现,它以具有恒定的数据查找时间而闻名。
以下是一些常见用法:
# Declare a dict
student = {'name': 'John', 'age': 14}# Get a value
age = student['age']
# age is 14# Update a value
student['age'] = 15
# student becomes {'name': 'John', 'age': 15}# Insert a key-value pair
student['score'] = 'A'
# student becomes {'name': 'John', 'age': 15, 'score': 'A'}
合并字典——旧方法
有时,两个字典需要被合并来做进一步的处理。在3.9版本正式发布之前,有几种方法可以做到这一点。假设有两个dict:d1和d2。我们想要创建一个新的dict:d3,它是d1和d2的集合。如果合并的dict之间有一些重叠的键,为了说明应该做什么,引入另一个dict,d2a,它有一个与d1重叠的键。
# two dicts to start with
d1 = {'a': 1, 'b': 2}
d2 = {'c': 3, 'd': 4}
d2a = {'a': 10, 'c': 3, 'd': 4}# target dict
d3 = {'a': 1, 'b': 2, 'c': 3, 'd': 4}
使用update() 方法
第一种方法是使用dict的方法update()。下面的代码片段展示了如何做到这一点。请注意,必须首先创建一个d1的副本,因为update() 函数将修改原始的dict。
# create a copy of d1, as update()modifies the dict in-place
d3 = d1.copy()
# d3 is {'a': 1, 'b': 2}# update the d3 with d2
d3.update(d2)
# d3 now is {'a': 1, 'b': 2, 'c': 3, 'd': 4}
当有重叠的键时,必须更加谨慎地选择保留哪些值。正如在下面看到的,在update() 方法中作为参数传递的dict将通过重叠键(例如‘a’)的值(如10)来“赢得”游戏。
d3 = d1.copy()
d3.update(d2a)
# d3 now is {'a': 10, 'b': 2, 'c': 3, 'd': 4}
# This is not the way that we wantd3 = d2a.copy()
d3.update(d1)
# d3 now is {'a': 1, 'c': 3, 'd': 4, 'b': 2}
# This is the way that we want
打开字典
第二种方法是使用字典的打开。与上述方法类似,当有重叠的键时,“最后出现”的获胜。
# unpacking
d3 = {**d1, **d2}
# d3 is {'a': 10, 'b': 2, 'c': 3, 'd': 4}
# Not rightd3 = {**d2a, **d1}
# d3 is {'a': 1, 'c': 3, 'd': 4, 'b': 2}
# Good
使用Dict(iterable, **kwarg)
在Python中创建字典的一种方法是使用 dict(iterable, **kwarg)类函数。与当前主题特别相关的是,当iterable是一个dict,将使用相同的键值对创建一个新的dict。至于关键字参数,可以传递另一个dict,这样它将会将键值对添加到将要创建的dict中。请注意,这个关键字参数dict将用相同的键替换该值,类似于“最后出现”的获胜。请看下面的例子。
d3 = dict(d1, **d2)
# d3 is {'a': 1, 'b': 2, 'c': 3, 'd': 4}
# Good, it's what we wantd3 = dict(d1, **d2a)
# d3 is {'a': 10, 'b': 2, 'c': 3, 'd': 4}
# Not right, 'a' value got replaced
需要注意的是,只有当关键字参数dict以字符串作为关键字时,该方法才有效。如下所示,使用 int 作为关键字的dict是行不通的。
>>> dict({'a': 1}, **{2:3})
Traceback (most recent call last):
File "", line 1,in
TypeError: keywords must be strings
>>> dict({'a': 1}, **{'2': 3})
{'a': 1, '2': 3}
合并字典——新功能
在最新发布的Python 3.9.0a4中,可以非常方便地使用合并运算符|来合并两个dict。下面给出了一个例子。你可能已经注意到,当这两个dict之间有重叠的键时,最后出现的会留下,这种行为与上面看到的一致,比如update() 方法。
# use the merging operator |
d3 = d1 | d2
# d3 is now {'a': 1, 'b': 2, 'c': 3, 'd': 4}
# goodd3 = d1 | d2a
# d3 is now {'a': 10, 'b': 2, 'c': 3, 'd': 4}
# not good
与这个合并操作符相关的是在环境中操作的参数赋值版本(例如更新左侧的dict)。本质上,它的功能与update()方法相同。下面的代码片段展示了它的用法:
# Create a copy for d1
d3 = d1.copy()# Use the augmented assignment of the merge operator
d3 |= d2
# d3 now is {'a': 1, 'b': 2, 'c': 3, 'd': 4}
# goodd3 |= d2a
# d3 now is {'a': 10, 'b': 2, 'c': 3, 'd': 4}
# not good
在今天的文章里,我们回顾了Python3.9中合并和更新字典的新特性。在几个模块中还有新的更新和改进,例如asyncio, math和os模块。