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

python进阶

廖雪峰 移动开发工程师
难度中级
时长 3小时33分
学习人数
综合评分9.20
575人评价 查看评价
9.6 内容实用
9.0 简洁易懂
9.0 逻辑清晰
def performance_decorator(f):
def wrapper(*args,**kw):
t1 = time.time()
r = f(*args,**kw)
t2 = time.time()
print 'call %s() in %.2f%s' %(f.__name__,(t2-t1)*1000,unit)
return r
return wrapper
return performance_decorator
def is_not_empty(s):
return s and len(s.strip()) > 0

# print filter(is_not_empty, ['test', None, '', 'str', ' ', 'END'])
print filter(lambda s:s and len(s.strip()) > 0 , ['test', None, '', 'str', ' ', 'END'])
def count():
fs = []
for i in range(1, 4):
def mul(m = i):
return m*m
fs.append(mul)
return fs

f1, f2, f3 = count()
print f1(), f2(), f3()
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()
def cmp_ignore_case(s1, s2):
if ord(s1[0].lower()) < ord(s2[0].lower()):
return -1
elif ord(s1[0].lower()) > ord(s2[0].lower()):
return 1
return 0

print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
def is_sqr(x):
a = math.sqrt(x)
return int(a) == float(a)

print filter(is_sqr, range(1, 101))
>>> 'i love you'.capitalize()
'I love you'
>>> 'i love you'.title()
'I Love You'
def format_name(s):
return s.title()

print map(format_name, ['adam', 'LISA', 'barT'])
def format_name(s):
return s.capitalize()

print map(format_name, ['adam', 'LISA', 'barT'])
def format_name(s):
if len(s) > 1:
return s[0].upper()+s[1:].lower()
else:
return s.upper()

print map(format_name, ['adam', 'LISA', 'barT'])
关于装饰器的理解和更深入的讨论。
http://blog.csdn.net/sinat_26114733/article/details/79372869
私有属性,当然无法访问。为了通过测试,代码不得不改成:
class Person(object):
__count = 0
def __init__(self, name):
self.name = name
Person.__count = Person.__count + 1

p1 = Person('Bob')
p2 = Person('Alice')

# print Person.__count
# print p1.__count

print 1, 2
print 'attributeerror'
这样就能通过了:

class Person(object):
def __init__(self, name, score):
self.name = name
# self.score = score
self.__score = score

p = Person('Bob', 59)

print p.name
#print p.__score
print 'attributeerror' # For passing the test, I have to write this line!
实在没办法,只能写成这样的:
# from os.path import isdir, isfile

# print isdir(r'https://www.imooc.com/data/webroot/resource/python')
# print isfile(r'https://www.imooc.com/data/webroot/resource/python/test.txt')

print 'true'

正确的代码,只能放在注释里了。
闭包加装饰器已经看了三天了。还是不理解。要放弃的节奏啊
课程须知
本课程是Python入门的后续课程 1、掌握Python编程的基础知识 2、掌握Python函数的编写 3、对面向对象编程有所了解更佳
老师告诉你能学到什么?
1、什么是函数式编程 2、Python的函数式编程特点 3、Python的模块 4、Python面向对象编程 5、Python强大的定制类

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消