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

python进阶

廖雪峰 移动开发工程师
难度中级
时长 3小时33分
学习人数
综合评分9.20
575人评价 查看评价
9.6 内容实用
9.0 简洁易懂
9.0 逻辑清晰
class Person(object):
__count = 0
@classmethod
def how_many(cls):#参数cls传入类本身
return cls.__count;
def __init__(self,name):
self.name=name;
Person.__count+=1;
class Person(object):

__count = 0

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

p1 = Person('Bob')
p2 = Person('Alice')
try:
print Person.__count
except AttributeError:
print "AttributeError"
类属型相当于类中的静态成员变量,即使用static关键字声明的类成员变量,可以使用”类名.静态成员变量名“来调用。
import math

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

print filter(is_sqr, range(1, 101))

与高票答案一模一样,感觉甚慰
s加了引号,改了半天还错,看答案才恍然大悟。。。我这脑子。。。
import time
def performance(unit):
def new_fn(f):
def fn(*args,**kw):
start = time.time()
result = f(*args,**kw)
print 'call ' + f.__name__ + '() in '+str(time.time()-start)+unit
return result
return fn
return new_fn
def performance(f):

def fff(*args):
t1 = time.time()
r = f(*args)
t2 = time.time()
t = t2 - t1
print 'call factorial() in ',t,'s'
return r
return fff
@property
def grade(self):
return (self.__score >= 80 and 'A') or (self.__score < 60 and 'C') or 'B'
def calc_prod(lst):
def f(x, y):
return x * y
def lazy_prod():
return reduce(f, lst)
return lazy_prod

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

用到了刚讲过的reduce(f,list)方法
class Person(object):
def __init__(self, name, score):
self.name = name
self.__score = score

p = Person('Bob', 59)

print p.name
print getattr(p,"__score","attributeerror")
def cmp_ignore_case(s1, s2):
x = s1[0:].lower()
y = s2[0:].lower()
if x>y:
return 1
if x<y:
return -1
return 0
print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
我觉的这个好理解多了,把获取到的值 求模 该值的平方根 是否等于 0
import math

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

print filter(is_sqr, range(1, 101))
sorted(iterable, /, *, key=None, reverse=False)
Return a new list containing all items from the iterable in ascending order.

A custom key function can be supplied to customize the sort order, and the
reverse flag can be set to request the result in descending order.
import json

class Students(object):

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

s = Students()

print json.load(s)
def count():
fs = []
for i in range(1, 4):
def f(i):
return lambda : i*i
fs.append(f(i))
return fs
f1, f2, f3 = count()
print f1(), f2(), f3()
课程须知
本课程是Python入门的后续课程 1、掌握Python编程的基础知识 2、掌握Python函数的编写 3、对面向对象编程有所了解更佳
老师告诉你能学到什么?
1、什么是函数式编程 2、Python的函数式编程特点 3、Python的模块 4、Python面向对象编程 5、Python强大的定制类

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消