为了账号安全,请及时绑定邮箱和手机立即绑定

python进阶

廖雪峰 移动开发工程师
难度中级
时长 3小时33分
学习人数
综合评分9.20
575人评价 查看评价
9.6 内容实用
9.0 简洁易懂
9.0 逻辑清晰
def prod(x, y):
return x*y

print reduce(prod, [2, 4, 5, 7, 12])
import math

def is_sqr(x):
if( math.sqrt(x) * 10)%10==0:
return x

print filter(is_sqr, range(1, 101))
def cmp_ignore_case(s1, s2):
if s1[0].upper() > s2[0].upper():
return 1
else:
return -1

print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
thanks~!it's useful
@property,可以将python定义的函数“当做”属性访问,从而提供更加友好访问方式
学了一天了,终于到这了
keep it on
很好,又可以装逼了!
def count():
fs = []
for i in range(1, 4):
def shi(i):
def ji():
return i * i
return ji
fs.append(shi(i))
return fs

f1, f2, f3 = count()
print f1(), f2(), f3()
这样理解也可以:
```python
def new_f(f):
print 'call ' + f.__name__ + '()'
return f
```
def performance(prefix):
def fix_perf(f):
def fn(*args,**kw):
t1=time.time()
fx=f(*args,**kw)
t2=time.time()
print 'call '+f.__name__+'() in %f%s' %(t2-t1,prefix)
return f(*args,**kw)
return fn
return fix_perf
import time

def performance(f):
def fn(*args,**kw):
t1=time.time()
fx=f(*args,**kw)
t2=time.time()
print 'call '+f.__name__+'() in %fs' %(t2-t1)
return f(*args,**kw)
return fn
def count():
fs = []
for i in range(1, 4):
def f(x):
def g():
return x*x
return g
fs.append(f(i))
return fs

f1, f2, f3 = count()
print f1(), f2(), f3()
def prod(x, y):
return x*y

print reduce(prod, [2, 4, 5, 7, 12])
def calc_prod(lst):
def prod(x,y):
return x*y
def lazy_prod():
return reduce(prod,lst)
return lazy_prod
f = calc_prod([1, 2, 3, 4])
print f()
课程须知
本课程是Python入门的后续课程 1、掌握Python编程的基础知识 2、掌握Python函数的编写 3、对面向对象编程有所了解更佳
老师告诉你能学到什么?
1、什么是函数式编程 2、Python的函数式编程特点 3、Python的模块 4、Python面向对象编程 5、Python强大的定制类

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消