本章概要:
1、函数基础
2、深入理解函数
3、综合练习
1、函数基础
课程概要:
理解函数
定义函数
调用函数
函数文档
一、理解函数
函数这个数学名词是莱布尼茨在1694年开始使用的。
二、定义函数
1、Python 函数格式
def 函数名(参数1, 参数2, ..., 参数n):
函数体(语句块)
2、函数的命名方式
三、调用函数
1、降低编程的难度,通常将一个复杂的大问题分解成一系列更简单的小问题,然后将小问题继续划分成更小的问题,当问题细化足够简单时,就可以分而治之。
2、代码重用
3、return 语句
def add_function(x, y):
'''
This is a function that adds x and y
'''
return x+y
if __name__=="__main__":
a=4
b=9
c=add_function(a, b)
print "a+b={0}+{1}={2}".format(a, b, c)
def add_function(x, y):
'''
This is a function that adds x and y
'''
return x+y
if __name__=="__main__":
a=4
b=9
c=add_function(x=a, y=b)
print "a+b={0}+{1}={2}".format(a, b, c)
def add_function(x, y):
'''
This is a function that adds x and y
'''
return x+y
if __name__=="__main__":
a="py"
b="thon"
c=add_function(a, b)
print "a+b={0}+{1}={2}".format(a, b, c)
# 斐波那契数列
def fibs(n):
'''
This is the Fibonacci sequence.
'''
result=[0, 1]
for i in range(n-2):
result.append(result[-2]+resultp[-1])
return result
if __name__=="__main__":
lst=fibs(10)
print lst
# 返回多个值
def my_fun():
return 1, 2, 3
b, c, d=my_fun()
四、函数文档
1、程序在大多数情况下是给人看的,只是偶尔被机器执行。
2、使用function.__doc__
查看函数文档
2、深入理解函数
课程概要:
参数和变量
参数收集和传值
特殊函数
一、参数和变量
# 函数就是对象
def foo(a, b):
return a+b
p=foo
print p(4,5)
1、按引用传递参数
# 按引用传递
def foo(a, b):
return a+b
x, y=3, 4
foo(x, y)
2、全局变量和局部变量
x=2 # 外部变量,但不是全局变量
def foo(a, b):
x=9 # 局部变量
print "This x is in the fun:",x
def bar():
global x # 全局变量
x=9
print "This x is in the fun:",x
3、命名空间
二、函数收集和传值
1、收集方式一:*args
def foo(*args):
# args 接收参数生成的是元组
print args
foo(1, 2, 3)
def foo(x, *args):
print "x:",x
print "args:",args
foo(1, 2, 3)
2、收集方式二:**kargs
def foo(* *kargs):
# kargs 接收参数生成的是字典
print kargs
foo(a=1, b=2, c=3)
#foo(1, 2, 3) 在这个函数里这样传是错误的
def foo(x, * args, * *kargs):
print x
print args
print kargs
foo(1)
foo(1, 2)
foo(1, 2, 3)
foo(1, 2, 3, name="Li Sn")
3、另一种传值方式
def foo(x, y):
return x+y
bars= 2, 3
# *bars传进去是元组(2, 3)
foo(*bars)
def book(author, name):
print "{0} has a book:{1}".format(author, name)
bars={"name":"Learn Python", "author":"Boss"}
4、zip()补充
colors=["red", "green", "blue"]
values=[124, 23, 6, 100]
zip(colors, values)
# 没有匹配的对象的100则会被抛弃
dots=[(1, 2), (3, 4), (5, 6)]
x, y=zip(*dots)
seq= range(1, 10)
zip(* [iter(seq)]*3)
#其实就是下面这个实现功能
x=iter(range(1, 10))
zip(x, x, x)
尝试一下zip(* [iter(seq)]*2)
,看看结果是什么-。-
三、特殊函数
lambda
map
reduce
filter
1、lambda
def foo(x):
x+=3
return x
n=range(10)
s=[i+3 for i in n]
lam=lambda x:x+3
n2=[]
for i in n2:
n2.append(lam(i))
g=lambda x, y: x+y
g(3,4)
2、map
def foo(x):
x+=3
return x
n=range(10)
map(foo, n)
map(lambda x:x+3, n)
lst1=[1, 2, 3, 4, 5]
lst2=[6, 7, 8, 9, 10]
map(lambda x, y: x+y, lst1, lst2)
3、reduce
lst1=[1, 2, 3, 4, 5]
lst2=[6, 7, 8, 9, 10]
reduce(lambda x, y: x+y, lst1, lst2)
4、filter
n=range(-5,5)
filter(lambda x: x>0, n)
3、综合练习
练习1:递归
练习2:解方程
练习3:统计考试成绩
练习4:找素数
一、递归
# 递归
def fib(n):
'''
This is Fibonacci by Recursion.
'''
if n==0:
return 0
elif n==1:
return 1
else:
return fib(n-1)+fib(n-2)
if __name__=="__main__":
f=fib(10)
print f
二、解方程
# 解方程
from __future__ import division
import math
def quadratic_equation(a, b, c):
delta= b*b-4*a*c
if delta < 0:
return False
elif delta==0:
return -(b/(2*a))
else:
sqrt_delta= math.sqrt(delta)
x1=(-b + sqrt_delta)/(2*a)
x2=(-b - sqrt_delta)/(2*a)
return x1, x2
if __name__=="__main__":
print "a quadratic equation: x^2 + 2x + 1=0"
coefficients=(1, 2, 1)
roots= quadratic_equation(*coefficients)
if roots:
print "the result is : ", roots
else:
print "this equation has no solution."
三、统计考试成绩
# 统计考试成绩
from __future__ import division
def average_score(scores):
'''
统计平均分
'''
score_values=scores.values()
sum_scores=sum(score_values)
average=sum_scores/len(score_values)
return average
def sorted_score(scores):
'''
对成绩从高到低排序
'''
score_lst=[(scores[k], k) for k in scores]
sort_lst=sorted(score_lst, reverse=True)
return [(i[1], i[0]) for i in sort_lst]
def max_score(scores):
'''
成绩最高的姓名和分数
'''
lst=sorted_score(scores)
max_score=lst[0][1]
return [(i[1], i[0]) for i in lst if i[1]==max_score]
def min_score(scores):
'''
成绩最低的姓名和分数
'''
lst=sorted_score(scores)
min_score=lst[len(lst)-1][1]
return [(i[1], i[0]) for i in lst if i[1]==min_score]
if __name__=="__main__":
examine_scores={"google":98, "facebook":99, "baidu":52, "alibaba":80,
"yahoo":49, "IBM":70, "amazon":99, "apple":99}
ave=average_score(examine_scores)
print "the average score is: ", ave
sor=sorted_score(examine_scores)
print "list of the scores: ", sor
xueba =max_score(examine_scores)
print "Xueba is : ", xueba
xuezha=min_score(examine_scores)
print "Xuezha is: ", xuezha
四、找素数
# 找素数
import math
def is_prime(n):
'''
判断一个数是否是素数
'''
if n <= 1:
return False
for i in range(2, int(math.sqrt(n)+1)):
if n%i ==0:
return False
return True
if __name__=="__main__":
primes= [i for i in range(2, 100) if is_prime(i)]
print primes
注意当自己写函数时,需要注意的几点:
1、尽量不要使用全局变量
2、参数是可变类型的数据,在函数中千万不要轻易修改它
3、每个函数的目标和功能都要很单纯,不要试图一个函数做很多事情
4、函数的代码函数要少
5、函数的独立性要好