Python 函数参数
Python 函数参数
在 Python 中,您可以定义一个接受可变数量参数的函数。在本文中,您将学习使用默认、关键字和任意参数来定义此类函数。
视频:Python 函数参数:位置、关键字和默认值
参数
在用户定义函数主题中,我们学习了定义函数并调用它。否则,函数调用将导致错误。这是一个例子。
def greet(name, msg):
"""This function greets to
the person with the provided message"""
print("Hello", name + ', ' + msg)
greet("Monica", "Good morning!")
输出
Hello Monica, Good morning!
这里,函数 greet()
有两个参数。
因为我们用两个参数调用了这个函数,所以它运行顺利,没有任何错误。
如果我们用不同数量的参数调用它,解释器将显示一条错误消息。下面是对该函数的调用,带有一个参数和没有参数以及它们各自的错误消息。
>>> greet("Monica") # only one argument TypeError: greet() missing 1 required positional argument: 'msg'
>>> greet() # no arguments TypeError: greet() missing 2 required positional arguments: 'name' and 'msg'
变量函数参数
到目前为止,函数有固定数量的参数。在 Python 中,还有其他方法可以定义一个可以接受可变数量参数的函数。
下面介绍了这种类型的三种不同形式。
Python 默认参数
函数参数在 Python 中可以有默认值。
我们可以使用赋值运算符 (=) 为参数提供默认值。这是一个例子。
def greet(name, msg="Good morning!"):
"""
This function greets to
the person with the
provided message.
If the message is not provided,
it defaults to "Good
morning!"
"""
print("Hello", name + ', ' + msg)
greet("Kate")
greet("Bruce", "How do you do?")
输出
Hello Kate, Good morning! Hello Bruce, How do you do?
在这个函数中,参数name
没有默认值,在调用过程中是必需的(强制)。
另一方面,参数 msg
默认值为 "Good morning!"
.因此,它在通话期间是可选的。如果提供了一个值,它将覆盖默认值。
函数中任意数量的参数都可以具有默认值。但是一旦我们有了默认参数,它右边的所有参数也必须有默认值。
这意味着,非默认参数不能跟随默认参数。例如,如果我们将上面的函数头定义为:
def greet(msg = "Good morning!", name):
我们会得到一个错误:
SyntaxError: non-default argument follows default argument
Python 关键字参数
当我们用一些值调用函数时,这些值会根据它们的位置分配给参数。
比如上面函数中的greet()
, 当我们称它为 greet("Bruce", "How do you do?")
, 值 "Bruce"
分配给参数 name 和类似的 "How do you do?"
到 msg .
Python 允许使用关键字参数调用函数。当我们以这种方式调用函数时,参数的顺序(位置)可以改变。以下对上述函数的调用都是有效的,并产生相同的结果。
# 2 keyword arguments
greet(name = "Bruce",msg = "How do you do?")
# 2 keyword arguments (out of order)
greet(msg = "How do you do?",name = "Bruce")
1 positional, 1 keyword argument
greet("Bruce", msg = "How do you do?")
如我们所见,我们可以在函数调用期间将位置参数与关键字参数混合使用。但我们必须记住,关键字参数必须跟在位置参数之后。
在关键字参数之后有一个位置参数将导致错误。例如函数调用如下:
greet(name="Bruce","How do you do?")
会导致错误:
SyntaxError: non-keyword arg after keyword arg
Python 任意参数
有时,我们事先不知道将传递给函数的参数数量。 Python 允许我们通过带有任意数量参数的函数调用来处理这种情况。
在函数定义中,我们在参数名称前使用星号 (*) 来表示此类参数。这是一个例子。
def greet(*names):
"""This function greets all
the person in the names tuple."""
# names is a tuple with arguments
for name in names:
print("Hello", name)
greet("Monica", "Luke", "Steve", "John")
输出
Hello Monica Hello Luke Hello Steve Hello John
在这里,我们使用多个参数调用了该函数。这些参数在传递给函数之前被包装成一个元组。在函数内部,我们使用 for
循环检索所有参数。
Python