python - Python 中的 *tuple 和 **dict 是什么意思?

标签 python python-3.x tuples namedtuple iterable-unpacking

<分区>

如 PythonCookbook 中所述,可以在元组之前添加 ** 在这里是什么意思?

Chapter 1.18. Mapping Names to Sequence Elements:

from collections import namedtuple
Stock = namedtuple('Stock', ['name', 'shares', 'price'])
s = Stock(*rec) 
# here rec is an ordinary tuple, for example: rec = ('ACME', 100, 123.45)

在同一节中,**dict 呈现:

from collections import namedtuple
Stock = namedtuple('Stock', ['name', 'shares', 'price', 'date', 'time'])
# Create a prototype instance
stock_prototype = Stock('', 0, 0.0, None, None)
# Function to convert a dictionary to a Stock
def dict_to_stock(s):
    return stock_prototype._replace(**s)

这里**的作用是什么?

最佳答案

在函数调用中

*t 表示“将此可迭代对象的元素视为此函数调用的位置参数。”

def foo(x, y):
    print(x, y)

>>> t = (1, 2)
>>> foo(*t)
1 2

从 v3.5 开始,您还可以在列表/元组/集合文字中执行此操作:

>>> [1, *(2, 3), 4]
[1, 2, 3, 4]

**d 表示“将字典中的键值对视为此函数调用的附加命名参数。”

def foo(x, y):
    print(x, y)

>>> d = {'x':1, 'y':2}
>>> foo(**d)
1 2

从 v3.5 开始,您还可以在字典字面量中执行此操作:

>>> d = {'a': 1}
>>> {'b': 2, **d}
{'b': 2, 'a': 1}

在函数签名中

*t 的意思是“将所有附加的位置参数带到这个函数中,并将它们作为一个元组打包到这个参数中。”

def foo(*t):
    print(t)

>>> foo(1, 2)
(1, 2)

**d 的意思是“将所有额外的命名参数带到这个函数中,并将它们作为字典条目插入到这个参数中。”

def foo(**d):
    print(d)

>>> foo(x=1, y=2)
{'y': 2, 'x': 1}

在赋值和for 循环中

*x 表示“消耗右侧的附加元素”,但不一定是最后一项。请注意,x 始终是一个列表:

>>> x, *xs = (1, 2, 3, 4)
>>> x
1
>>> xs
[2, 3, 4]

>>> *xs, x = (1, 2, 3, 4)
>>> xs
[1, 2, 3]
>>> x
4

>>> x, *xs, y = (1, 2, 3, 4)
>>> x
1
>>> xs
[2, 3]
>>> y
4

>>> for (x, *y, z) in [ (1, 2, 3, 4) ]: print(x, y, z)
...
1 [2, 3] 4

请注意,出现在 * 之后的参数仅限关键字:

def f(a, *, b): ...

f(1, b=2)  # fine
f(1, 2)    # error: b is keyword-only

添加了 Python3.8 positional-only parameters ,表示不能用作关键字参数的参数。它们出现在 / 之前(对 * 的双关语,在仅关键字参数之前)。

def f(a, /, p, *, k): ...

f(  1,   2, k=3)  # fine
f(  1, p=2, k=3)  # fine
f(a=1, p=2, k=3)  # error: a is positional-only

关于python - Python 中的 *tuple 和 **dict 是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21809112/

相关文章:

python - 阻止 GitPython 在尝试克隆不存在的远程存储库时询问凭据

python - 将 Python SIGINT 重置为默认信号处理程序

Django 私有(private)帖子和公共(public)帖子示例?

Python 解压命名元组的二维列表

python - 如何连接元组

python - 带有 *args 的 lambda 表达式

python - for 循环中的 if/else

python - Python 2.x 和 3.x 中用于引发异常的有效语法?

python:监控远程目录

python - 是否有 Python 3.x 发布生命周期的官方指南?