gpt4 book ai didi

python - 向函数传递参数——从 Python 开始

转载 作者:太空宇宙 更新时间:2023-11-03 12:40:30 25 4
gpt4 key购买 nike

Starting Out With Python 的第 3.5 节“将参数传递给函数”有一个我没有遵循的示例:

# This program demonstrates an argument being
# passed to a function

def main():
value = 5
show_double(value)

# The show_double function accepts an argument
# and displays double its value

def show_double(number):
result = number * 2
print result


#call main function
main()

我不明白函数 show_double 之后的 (number) 如何与主函数相关,或与任何其他相关。我也不明白为什么它在主函数中列为 show_double(value)。我不知道为什么 show_double() 的两个实例不使用传递给它的相同参数?

最佳答案

因此,当您使用 () 调用函数时,您是在说我希望该函数运行。在底部,您调用了 main 函数,该函数又调用了参数为 5show_double 函数。

关于python - 向函数传递参数——从 Python 开始,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18540974/

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