class Student(Person):
__slots__ = ('score')
def __init__(self,name,gender,score):
super(Student,self).__init__(name,gender)
self.score=score
__slots__ = ('score')
def __init__(self,name,gender,score):
super(Student,self).__init__(name,gender)
self.score=score
2015-03-22
已采纳回答 / 廖雪峰
math.sqrt(x)是浮点数,浮点数比较很多情况是不精确的,而整数比较是绝对精确的:r = int(math.sqrt(x))return r*r == x
2015-03-21
最赞回答 / june_fu888
首先是sorted函数,第一个参数为LIST 即 L1 第二个参数为定义的比较函数;lambda p1, p2: cmp(p1.name, p2.name) 意思是,传入p1和p2,比较两者的name这样一分解就容易理解了吧
2015-03-21