gpt4 book ai didi

python - python函数的基本解释

转载 作者:太空狗 更新时间:2023-10-30 00:22:48 24 4
gpt4 key购买 nike

我在下面有一个基本问题,可以帮助我尝试了解 python 中的函数(遵循 prep for uni 中的 LPTHW 教程)。谁能解释下面的语法,以及我的假设是否正确?

def print_two_again(arg1, arg2):
print "arg1: %r, arg2: %r" % (arg1, arg2)

print_two_again("Steve","Testing")

我明白 print_two_again 是函数的名称,但是 arg1, arg2 在括号中的目的是什么在它的旁边?是不是把"Steve" "Testing" 调用到下面的打印命令中?还是这些字符串直接进入 print 命令?

最佳答案

what is the purpose of having the arg1, arg2 in the parenthesis next to it?

在这种情况下,arg1arg2 称为参数。参数允许函数接收预期用于执行任务的输入。输入由调用者提供。

例如,在学校数学中,您可能已经看到类似 z = f(x, y) 的内容,其中名为 f 的函数定义为 f(x, y) = x + y。这与编程语言中的概念相同。

它还允许您编写更通用、更灵活且可重用 的代码。例如,您不必编写许多不同版本的函数来完成相同的任务但结果略有不同,从而避免了类似 add2(x, y) = x + y 的情况add3(x, y, z) = x + y + z,依此类推。您可以简单地执行以下操作:

def sum(values):  # values is of type 'list'
result = 0
for value in values:
result += value
return result

然后这样调用它:

total = sum([1, 2, 3, 4, 5, 6, 7]) # 任意长度的数字列表

或者像这样:

总计 = sum([1, 2])

一个函数需要多少参数取决于它需要做什么以及其他因素。

更新

What confuses me is the print_two_again("Steve","testing") , what is this called and its purpose?

print_two_again("Steve","testing") 行是函数的调用(即函数调用)。这会导致程序“跳转”到名为 print_two_again 的函数的 body 并开始执行其中的代码。

("Steve","testing") 部分是作为输入发送到函数的参数。这些是 positional 参数,这基本上意味着它们根据您输入的顺序“映射”到名称 arg1arg2在调用函数时提供它们。

例如,考虑函数 f(x, y) = x - y。如果此函数被调用为 z = f(3, 4),则名为 x 的参数将收到值 3y 将为 4,返回 -1。如果您反转调用中的参数,那么您将得到 x=4y=3 并且它会返回 1。您提供的函数中的参数也是如此。

这意味着函数调用中的参数顺序很重要

与许多其他语言一样,Python 语言已经具有一组内置功能。名为 print 的函数就是一个例子。您可以使用 pydoc 命令(pydoc3 如果您使用 Python3,我推荐这样做)获得大量信息。例如,命令 pydoc3 print 生成以下文档:

Help on built-in function print in module builtins:

print(...) print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)

Prints the values to a stream, or to sys.stdout by default.
Optional keyword arguments:
file: a file-like object (stream); defaults to the current sys.stdout.
sep: string inserted between values, default a space.
end: string appended after the last value, default a newline.
flush: whether to forcibly flush the stream.

请注意,这是 Python3 的文档。 Python2 文档会略有不同。

您对函数的理解(如在学校的数学类(class)中所见)与在编程语言中所见的函数之间存在直接关联。这是因为数学是计算机科学和编程语言等(例如算法分析)基础的一部分。

关于python - python函数的基本解释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32409802/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com