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

python进阶

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

f = calc_prod([1, 2, 3, 4])
print f()
完全不知道该怎么办了。先抄袭代码跳过这一章,回头再学吧。

最赞回答 / 慕粉7269117
如果相等print True否则 False这里是两个实例的内存地址不同
顺便复习下reduce()函数hh
def calc_prod(lst):
def prod(x,y):
return x*y
def multip():
print reduce(prod,lst)
return multip

f = calc_prod([1, 2, 3, 4])
print f()

最新回答 / 白或
代码没错, import simplejson as json 之后要打2个回车 退出 try块吧
import math

def add(x, y, f):
return f(x) + f(y)
def f(z):
return math.sqrt(z)
print add(25, 9,f)

最赞回答 / 慕运维0732357
complex类型 不能强制转换为 int 和 float类型
for k,v in kw.iteritems():
setattr(self,k,v)
sort()是默认是数字值,字符串ASCII值从小到大的排序,即sort([......],1)
字符一个一个比较,出现不同则停止比较
reseversed_cmp取值是前面的List,感到懵逼多半是这里记不住,理解时很伤啊....
raise ValueError('invalid score')
// 代表整除
课程须知
本课程是Python入门的后续课程 1、掌握Python编程的基础知识 2、掌握Python函数的编写 3、对面向对象编程有所了解更佳
老师告诉你能学到什么?
1、什么是函数式编程 2、Python的函数式编程特点 3、Python的模块 4、Python面向对象编程 5、Python强大的定制类

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消