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

python进阶

廖雪峰 移动开发工程师
难度中级
时长 3小时33分
学习人数
综合评分9.20
575人评价 查看评价
9.6 内容实用
9.0 简洁易懂
9.0 逻辑清晰
函数式编程棒棒哒~~
一脸懵逼。。。
ruduce的第三个参数:初始值,当上一步有运算的定义时,初始值应该为‘1’,以防止累积计算出错
class Person(object):

def __init__(self, name, gender, **kw):
self.name = name
self.gender = gender


p = Person('Bob', 'Male')
setattr(p, 'age', 18)
setattr(p, 'course','Python' )
print p.age
print p.course
u1 = s1.upper()大写的函数
sorted 后面先是迭代的对象,然后在引入函数
class Person(object):

__count = 0

@classmethod
def how_many(cls):
print cls.__count
cls.__count += 1
print cls.__count

def __int__(self,name):
self.name = name


print Person.how_many()

p1 = Person('Bob')

print Person.how_many()
math.sqrt()是平方根函数
def __init__(self, name, score):
self.name = name
self.__score = score
def get_grade(self):
if self.__score >80:
print 'A'
elif self.__score >= 60:
print 'B'
else:
print 'C'
class Person(object):
count = 0
def __init__(self, name):
self.name = name
Person.count = Person.count+1

p1 = Person('Bob')
print Person.count

p2 = Person('Alice')
print Person.count

p3 = Person('Tim')
print Person.count
sorted_ignore_case = functools.partial(sorted,key=str.upper)
#或者参数key = str.lower都可以
def __init__(self, name, score):
self__name=name
self__score=score
if self__score>80:
print 'A-优秀'
elif self__score>60:
print 'B-及格'
else:
print 'C-不及格'
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:
print AttributeError
xdp
这两个是python中的可变参数。*args表示任何多个无名参数,它是一个tuple;**kwargs表示关键字参数,它是一个dict。并且同时使用*args和**kwargs时,必须*args参数列要在**kwargs前
import time
def performance(unit):
def decorator(f):
def fn(*args,**kw):
print 'call %s() in %s'%(f.__name__,unit)
return f(*args,**kw)
return fn
return decorator
@performance('ms')
.......
本来好受打击的,看了下面的小伙伴们。。。。。。
课程须知
本课程是Python入门的后续课程 1、掌握Python编程的基础知识 2、掌握Python函数的编写 3、对面向对象编程有所了解更佳
老师告诉你能学到什么?
1、什么是函数式编程 2、Python的函数式编程特点 3、Python的模块 4、Python面向对象编程 5、Python强大的定制类

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消