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

python进阶

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

最新回答 / Dr_苏泊
if self.score > s.score:            return  -1
class Student(Person):

def __init__(self, name, gender, score):
super(Student, self).__init__(name, gender)
self.score = score

def __str__(self):
return '(Student: %s, %s, %s)'%(self.name,self.gender,self.score)
__repr__=__str__
感觉有难度了。。。
在json/decoder.py中提示“No JSON object could be decoded”,所以在read()方法中要返回具有json格式的原始字符串,最简单的就是[]
def calc_prod(lst):
def multi(a,b):
return a*b
def reduceX():
return reduce(multi,lst)
return reduceX

f = calc_prod([1, 2, 3, 4])
print f()
def __cmp__(self, s):
if self.score<s.score:
return 1
elif self.score>s.score:
return -1
elif self.score==s.score:
if self.name<s.name:
return -1
else:
return 1
return'(Student:%s,%s,%s)'%(self.name,self.gender,self.score)
class Person(object):
count=0
def __init__(self,name):
self.name=name
Person.count = Person.count+1

最赞回答 / ReSur
指要前后删除的序列,如:>>> s = 'hehehehelloworldhehehe'>>> s.strip('he')'lloworld'
我这种方法效率挺低的:
def __init__(self, num):
if num==1 :
self.numbers=[0]
elif num==2:
self.numbers=[0,1]
else :
g=Fib(num-1)
g.numbers.append(g.numbers[-1]+g.numbers[-2])
self.numbers=g.numbers
class BStudent(BasketballMixin,Student):
pass

class FTeacher(FootballMixin,Teacher):
pass
import json

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

s = Students()

print json.load(s)
http://www.liaoxuefeng.com/wiki/001374738125095c955c1e6d8bb493182103fac9270762a000/0014186131194415d50558b7a1c424f9fb52b84dc9c965c000#0
廖老师的官网上的python
感觉@真是萌萌哒,函数:快来@我!
到后面越来越懵了
课程须知
本课程是Python入门的后续课程 1、掌握Python编程的基础知识 2、掌握Python函数的编写 3、对面向对象编程有所了解更佳
老师告诉你能学到什么?
1、什么是函数式编程 2、Python的函数式编程特点 3、Python的模块 4、Python面向对象编程 5、Python强大的定制类

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消