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

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])
用time.clock()会不会更好一点....
服务器时间不对呀!
class Fib(object):
def __call__(self, num):
lst = [0, 1]
if num < 1:
return
i = 0
while i < num:
lst.append(lst[i] + lst[i + 1])
i += 1
return lst[:num]
关键字lambda 表示匿名函数,冒号前面的 x 表示函数参数。
马德(f._name_,t)是错的,_的长度不对,要两个“_”组成“__”才对
def cmp_ignore_case(s1, s2):
return cmp(s1.lower(),s2.lower())

print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
def cmp_ignore_case(s1, s2):
S1 = s1.lower()
S2 = s2.lower()
if S1 > S2:
return 1
if S1 < S2:
return -1
return 0

print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
import math

def is_sqr(x):
return math.sqrt(x) % 1 == 0

print filter(is_sqr, range(1,101))
def format_name(s):
return s.title()

print map(format_name, ['adam', 'LISA', 'barT'])
注意:map()函数不改变原有的 list,而是返回一个新的 list。
import math

def add(x, y, f):
return f(x) + f(y)

print add(25, 9, math.sqrt)
import functools


# sorted_ignore_case = functools.partial(sorted,key=lambda str : str.lower())
sorted_ignore_case = functools.partial(sorted,cmp=lambda str1, str2 : 1 if str1.lower() > str2.lower() else -1)


print sorted_ignore_case(['bob', 'about', 'Zoo', 'Credit'])
From Python 3.0 changelog;

The StringIO and cStringIO modules are gone. Instead, import the io module and use io.StringIO or io.BytesIO for text and data respectively.
import time

def performance(unit):
def performance_decorator(f):
def wrapper(*args, **kw):
print "call %s() in %s%s" % (f.__name__, time.time, unit)
return f(*args, **kw)
return wrapper
return performance_decorator
课程须知
本课程是Python入门的后续课程 1、掌握Python编程的基础知识 2、掌握Python函数的编写 3、对面向对象编程有所了解更佳
老师告诉你能学到什么?
1、什么是函数式编程 2、Python的函数式编程特点 3、Python的模块 4、Python面向对象编程 5、Python强大的定制类

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消