Python中函数Function知识点

Posted wintersweet321

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python中函数Function知识点相关的知识,希望对你有一定的参考价值。

In general, you can tell whether something is callable or not with the built-in function callable.

技术分享图片
1 import math
2 
3 x=1
4 y=fibs_compute
5 print(callable(x))
6 print(callable(y))
View Code

 

定义函数,求斐波那契数列

技术分享图片
 1 import math
 2 
 3 def fibs_compute(number):
 4     fibs=[0,1]
 5     for i in range(int(number)-2):
 6         fibs.append(fibs[-1]+fibs[-2])
 7     return(fibs)
 8     
 9 num=input("How many numbers do you want?")
10 print("Here is:",fibs_compute(num))    
11    
View Code

 

The variables you write after your function name in def statements are often called the formal parameters of the function. 

The values you supply when you call the function are called the actual parameters, or arguments.


以上是关于Python中函数Function知识点的主要内容,如果未能解决你的问题,请参考以下文章

课程Python函数

python 的偏函数(Partial function)

初学Python——函数

python学习之路

在 Python 多处理进程中运行较慢的 OpenCV 代码片段

13 个非常有用的 Python 代码片段