博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python中函数Function知识点
阅读量:5146 次
发布时间:2019-06-13

本文共 741 字,大约阅读时间需要 2 分钟。

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

1 import math2 3 x=14 y=fibs_compute5 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.

转载于:https://www.cnblogs.com/wintersweet321/p/9737395.html

你可能感兴趣的文章
《SEO实战密码》读后一点感受
查看>>
bzoj 4815 [Cqoi2017]小Q的表格——反演+分块
查看>>
Swift 入门之简单语法(六)
查看>>
shim和polyfill有什么区别
查看>>
Failed to load the JNI shared library “E:/2000/Java/JDK6/bin/..jre/bin/client/jvm.dll
查看>>
〖Python〗-- IO多路复用
查看>>
栈(括号匹配)
查看>>
夜太美---酒不醉--人自醉
查看>>
Java学习 · 初识 面向对象深入一
查看>>
源代码如何管理
查看>>
vue怎么将一个组件引入另一个组件?
查看>>
bzoj1040: [ZJOI2008]骑士
查看>>
LeetCode 74. Search a 2D Matrix(搜索二维矩阵)
查看>>
利用SignalR来同步更新Winfrom
查看>>
反射机制
查看>>
CocoaPod
查看>>
css3实现漂亮的按钮链接
查看>>
[python基础] python 2与python 3的区别,一个关于对象的未知的坑
查看>>
BZOJ 1251: 序列终结者 [splay]
查看>>
云的世界
查看>>