首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

python学习之二函数

2013-12-05 
python学习之2函数def fib(n):#fib stringa,b0,1 #a0 b1i0while in:print(a,)a,bb,a+b #多重复值i

python学习之2函数
def fib(n):#fib string a,b=0,1 #a=0 b=1 i=0 while i<n: print(a,' ') a,b=b,a+b #多重复值 i=i+1 print('done')f=fib #函数重命名f(5)

?tips:函数?调用?会为函数局部变量生成一个新的符号表。 确切的说,所有函数中的变量赋值都是将值存储在局部符号表。 变量引用首先在局部符号表中查找,然后是包含函数的局部符号表,然后是全局符号表,最后是内置名字表。 因此,全局变量不能在函数中直接赋值(除非用?def fibwithdefaultvalue(n=5):# 不传递n时,n的值将会是5 a,b=0,1 i=0 result=[]#list while i<n: result.append(a) a,b=b,a+b i=i+1 return resultg=fibwithdefaultvalueprint(g())

?tips1:默认值可以是变量,并且在函数定义的时候被解析:如下

'''Created on Dec 3, 2013@author: panql'''i = 5def f(arg=i):    print(arg)i = 6f()

?此段代码的执行结果为5,因为在函数定义的时候,能够解析的i的值是5

tips2:默认值只会被赋值一次,如果默认值是可变对象时,可能会出现很诡异的情况,如默认值是列表时可能出现累积等。

1.3 关键字参数以及可变参数

1.3.1 关键字参数

在如下代码中,展示了通过关键字参数。及k=v的形式来调用函数的做法

'''Created on Dec 3, 2013to know keywords arguments@author: panql'''def keywordsargs(userid,username='none',password='none'):    '''    there are three argumens:userid,username and password .username and password have default value.    '''    print('the user id is ',userid,' username is',username,'pwd is',password)keywordsargs('aaa')keywordsargs(userid='aaa',password='bbb')keywordsargs('bbb',username='hehe',password='cccc')keywordsargs(userid='aaaa',username='hello',password='nihao')keywordsargs(password='nihao',username='hello',userid='aaaa')

?tips:1 任何参数都不能被赋值两次

1.3.2可变参数

//TODO

?

?

?

?

tips:

1.python eclipse插件设置

http://www.cnblogs.com/halfacre/archive/2012/07/22/2603848.html

2.