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

python进阶

廖雪峰 移动开发工程师
难度中级
时长 3小时33分
学习人数
综合评分9.20
575人评价 查看评价
9.6 内容实用
9.0 简洁易懂
9.0 逻辑清晰
import math
def gen(x):
y=0.0
while(1):
y=y+1
if y*y==x:
break
return y

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

print add(25,9, gen)
def format_name(s):
i=s[0].upper()
i=i+s[1:].lower()
return i

print map(format_name, ['adam', 'LISA', 'barT'])
def __cmp__(self, s):
if self.score>s.score:
return -1
elif self.score<s.score:
return 1
else:
if self.name<s.name:
return -1
elif self.name>s.name:
return 1
else:
return 0
f1, f2, f3 = count() count()的返回值是一个list的,所以f1,f2,f3也应该是list,f1,f2,f3是list,里面的元素是指向函数的变量,printf f1( ),f2( ),f3( ) 这条语句是不是可以这么理解,打印f1中元素再加上( )就是调用l函数
def f1(x,y):
return x*y

def calc_prod(lst):
def cal():
return reduce(f1,lst)
return cal

f = calc_prod([1, 2, 3, 4])
print f()
交互式的学习效果好。
def hanshu1(list):
def hanshu2(x,y):
return x*y
return reduce(hanshu2, list)
print hanshu1(range(1,5))
def f(s):
return s[0].upper()+s[1:].lower()

print map(f, ['adam', 'LISA', 'barT'])
方法一:
import math

def is_sqr(x):
return math.sqrt(x) == int(math.sqrt(x))
print filter(is_sqr, range(1, 101))

方法二:
import math

def is_sqr(x):
return math.sqrt(x) % 1 == 0
print filter(is_sqr, range(1, 101))
def calc_prod(lst):
def calc_a():
def a(x,y):
return x*y
return reduce(a,lst)
return calc_a

f = calc_prod([1, 2, 3, 4])
print f()
def cmp_ignore_case(s1, s2):
if s1.lower()>s2.lower() :
return 1
if s1.lower()<s2.lower() :
return -1
return
print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
import math

def is_sqr(x):
if math.sqrt(x)==int(math.sqrt(x)):
return x*x

print filter(is_sqr, range(1,101))
def prod(x, y):
return x*y

print reduce(prod, [2, 4, 5, 7, 12])
方法一:
def prod(x, y):
return x*y
print reduce(prod, [2, 4, 5, 7, 12])
方法二:
l_o = ['adman', 'LISA', 'batT']
def format(s):
l_n = s[0].upper()
for i in s[1:]:
l_n = l_n + i.lower()
return l_n
print map(format, l_o)
课程须知
本课程是Python入门的后续课程 1、掌握Python编程的基础知识 2、掌握Python函数的编写 3、对面向对象编程有所了解更佳
老师告诉你能学到什么?
1、什么是函数式编程 2、Python的函数式编程特点 3、Python的模块 4、Python面向对象编程 5、Python强大的定制类

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消