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

python进阶

廖雪峰 移动开发工程师
难度中级
时长 3小时33分
学习人数
综合评分9.20
575人评价 查看评价
9.6 内容实用
9.0 简洁易懂
9.0 逻辑清晰
class Students(object):
def __init__(self):
pass
def read(self):
return r'["Tim","Bob","Alice"]'
class Teacher(Person):
def __init__(self, name, gender, course):
super(Teacher,self).__init__(name,gender)
self.course=course
class Person(object):
__count = 0
def __init__(self,name):
self.name=name
Person.__count += 1
@classmethod
def how_many(cls):
return cls.__count
Pipy的发音应该是"pie-pie"(根据《Head First Python》中文版)

最新回答 / a412739861
因为前面还有filter()函数啊。 Python 内置的另一个有用的高阶函数,filter()函数接收一个函数 f 和一个list,这个函数 f 的作用是对每个元素进行判断,返回 True或 False,filter()根据判断结果自动过滤掉不符合条件的元素,返回由符合条件元素组成的新list。http://www.imooc.com/code/6051
def calc_prod(lst):
def prod():
return reduce(lambda x, y: x*y, lst)
return prod

f = calc_prod([1, 2, 3, 4])
print f()
string.capwords(s)
def count():
fs = []
for i in range(1, 4):
def f():
return i*i
fs.append(f())
return fs

f1, f2, f3 = count()

print f1,f2,f3

加个小括号就好了哇
def calc_prod(lst):
def lazy_prod():
a=1
for x in lst:
a=a*x

return a
return lazy_prod

f = calc_prod([1, 2, 3, 4])
print f()
这个要用到参数名,只好去查文档了。可以上python.org去下载Documents。
sorted_ignore_case = functools.partial(sorted,key=str.lower)
关于这个装饰者模式,不懂的话最好反复学习直到弄懂。。。再看一遍终于明白了orz

def performance(unit):
def new_fn(f):
def inner_fn(*args,**kw):
print 'call factorial(),'
return f(*args,**kw)
return inner_fn
return new_fn
晕死。。一定要加上'call factorial() in'这句话。。

def performance(f):
def fn(*args, **kw):
print 'call factorial() in',time.time()
return f(*args, **kw)
return fn
print filter(lambda s: s and len(s.strip()) > 0, ['test', None, '', 'str', ' ', 'END'])
课程须知
本课程是Python入门的后续课程 1、掌握Python编程的基础知识 2、掌握Python函数的编写 3、对面向对象编程有所了解更佳
老师告诉你能学到什么?
1、什么是函数式编程 2、Python的函数式编程特点 3、Python的模块 4、Python面向对象编程 5、Python强大的定制类

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消