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

python进阶

廖雪峰 移动开发工程师
难度中级
时长 3小时33分
学习人数
综合评分9.20
575人评价 查看评价
9.6 内容实用
9.0 简洁易懂
9.0 逻辑清晰
#coding: utf-8
class Person(object):

def get_grade(self):
grade = 'A-优秀';
if self.__score < 60:
grade = 'C-不及格'
elif self.__score < 85:
grade = 'B-及格'
return grade;
# -*- coding: UTF-8 -*-
class Person(object):

__count = 0

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

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

print Person.__count
怎么感觉后面的越来越深奥的?弄一个函数而已,写拉磨复杂干嘛?
把self.get_grade 换成x ,把lambda:'A' 换成def y(): return 'A',上面就变成x = y,打印时候x() = y(),第一个返回函数,第二个返回值
觉得:@无与不知 是脑残,废物的举手
from os.path import isdir, isfile

print isdir(r'/data/webroot/resource')
print isfile(r'/data/webroot/resource/python/test.txt')
def calc_prod(lst):
def lazy_calc_prod():
sum = 1
for i in lst:
sum *= i
return sum
return lazy_calc_prod

f = calc_prod([1, 2, 3, 4])
print f()
def performance(unit):

def print_time(f):

def times(*args,**kw):
print 'call '+f.__name__+'()' ,time.time(),unit
return f(*args,**kw)
return times
return print_time
from functools import cmp_to_key
def cmp_ignore_case(s1, s2):
if s1.lower() >s2.lower() :
return 1
if s1.lower() <s2.lower() :
return -1
return 0
print (sorted(['bob', 'about', 'Zoo', 'Credit'], key=cmp_to_key(cmp_ignore_case)))
def cmp_ignore_case(s1, s2):
a1 = s1.upper()
a2 = s2.upper()
if a1 < a2:
return -1
if a1 > a2:
return 1
return 0

print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
import math

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

print filter(is_sqr, range(1, 101))
return '(Student:%s,%s,%s)'%(self.name,self.gender,self.score)

__repr__=__str__
课程须知
本课程是Python入门的后续课程 1、掌握Python编程的基础知识 2、掌握Python函数的编写 3、对面向对象编程有所了解更佳
老师告诉你能学到什么?
1、什么是函数式编程 2、Python的函数式编程特点 3、Python的模块 4、Python面向对象编程 5、Python强大的定制类

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消