38

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

第 1.18 章。将名称映射到序列元素:

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)

这里的功能是什么**

4

1 回答 1

109

在函数调用中

*t意思是“把这个可迭代的元素当作这个函数调用的位置参数”。

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

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

从 v3.5 开始,您还可以在 list/tuple/set 文字中执行此操作:

>>> [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

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

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

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

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

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
于 2014-02-16T08:55:42.133 回答