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

python进阶

廖雪峰 移动开发工程师
难度中级
时长 3小时33分
学习人数
综合评分9.20
575人评价 查看评价
9.6 内容实用
9.0 简洁易懂
9.0 逻辑清晰
from functools import reduce

def calc_prod(lst):
def lazy_prod():
return reduce(lambda x, y: x*y, lst)
return lazy_prod

f = cacl_prod([1, 2, 3, 4])
print(f())
python3用法:

a = ['bob', 'about', 'Zoo', 'Credit']
print(sorted(a, key=str.lower))
import math

def is_sqr(x):
return str(math.sqrt(x)).split('.')[-1] == '0'

print filter(is_sqr, range(1, 101))
class Person(object):
def __init__(self, name, score):
self.name = name
self.__score = score

p = Person('Bob', 59)

print p.name
try:
print p.__score
except AttributeError:
print ('attributeError')
def __str__(self):
x = min(self.p, self.q)
while self.p % x != 0 or self.q % x != 0:
x -= 1
if x == 1:
break
return "%s/%s" % (self.p/x, self.q/x)
def calc_prod(lst):
def mul():
if not isinstance(lst, list):
# raise Exception()
print 'arg is not a list'
return
else:
return reduce(lamda: x,y: x*y, lst)
return mul

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

这段代码哪里有问题,请问?
import json

class Students(object):
def read(self):
return r'["Tim", "Bob", "Alice"]'

s = Students()

print json.load(s)
and if and if
唯一受不了python的就是这个下划线了
class Person(object):
def __init__(self, name, score):
self.name = name
self.__score = score

p = Person('Bob', 59)

try:
print p.name
print p.__score
except:
print "attributeerror"
def format_name(s):
return s.lower().capitalize()

还是这样看着最优雅~~~
def performance(unit):
def wrapper(f):
def invoke(*args, **kw):
t = time.ctime()
print "call",f.__name__+"() in",t,unit
return f(*args, **kw)
return invoke
return wrapper
import math

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

print filter(is_sqr, range(1, 101))
def calc_prod(lst):
def prod(l=lst):
return reduce(lambda x, y: x * y, l)
return prod

f = calc_prod([1, 2, 3, 4])
print f()
print sorted(['bob', 'about', 'Zoo', 'Credit'], key=str.lower)
课程须知
本课程是Python入门的后续课程 1、掌握Python编程的基础知识 2、掌握Python函数的编写 3、对面向对象编程有所了解更佳
老师告诉你能学到什么?
1、什么是函数式编程 2、Python的函数式编程特点 3、Python的模块 4、Python面向对象编程 5、Python强大的定制类

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消