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

python进阶

廖雪峰 移动开发工程师
难度中级
时长 3小时33分
学习人数
综合评分9.20
575人评价 查看评价
9.6 内容实用
9.0 简洁易懂
9.0 逻辑清晰
class Person(object):
def __init__(self, name, gender, **kw):
self.name = name
self.gender = gender
for k, v in kw.items():
setattr(self, k, v)

p = Person('Bob', 'Male', age=18, course='Python')
print(p.age)
print(p.course)
class Person(object):

__count = 0

def __init__(self, name):
Person.__count = Person.__count + 1
self.name = name
print Person.__count

p1 = Person('Bob')
p2 = Person('Alice')

print 'attributeerror'
class Person(object):

__count = 0

def __init__(self, name):
self.name = name
Person.__count = Person.__count + 1
print Person.__count

p1 = Person('Bob')
p2 = Person('Alice')

try:
print Person.__count
except AttributeError:
print "attributeerror"
count = 0
def __init__(self,name):
self.name = name
Person.count = Person.count + 1
这方法真是想不到啊。。。。
L2 = sorted(L1,lambda p1,p2:cmp(p1.name.upper(),p2.name.upper()))
忘了java和C把,我偷偷学python来写你
time模块的引入和使用有点突兀,之前没有用过,其他的还可以跟上
def performance(f):
def fn(*args,**kw):
start = time.time()
r = f(*args,**kw)
end = time.time()
print "Call %s() in %fs" % (f.__name__,(end - start))
return r
return fn
import json

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

s = Students()

print json.load(s)

就是定义个read()
class P1():
count = 0

class Person(P1):
def __init__(self,name):
self.name = name
P1.count += 1
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 __init__(self,name,gender,birth,**kwargs):
self.name = name
self.gender = gender
self.birth = birth
for key,value in kwargs.items():
setattr(self,key,value)

xiaoming = Person('Xiao Ming', 'Male', '1990-1-1', job='Student')
看见那么多人都说很难我就放心了,我还以为只有我觉得难
课程须知
本课程是Python入门的后续课程 1、掌握Python编程的基础知识 2、掌握Python函数的编写 3、对面向对象编程有所了解更佳
老师告诉你能学到什么?
1、什么是函数式编程 2、Python的函数式编程特点 3、Python的模块 4、Python面向对象编程 5、Python强大的定制类

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消