已采纳回答 / 廖雪峰
注意你的for循环第一次就退出了,而且永远返回 x == 1*1def is_sqr(x): for y in range(1,11): if x==y*y: return True return False
2015-03-06
最新回答 / 慕客2057
我认为,可以参考:>>> import functools>>> int2 = functools.partial(int, base=2) # base是一个函数,其参数取2,即把输入的内容转化成2进制>>> int2('1000000')64这里也一样,cmp是一个函数,其函数里面又包含了一个参数函数,为隐函数lambda,后面部分为参数函数lambda的内容
2015-03-06
def laze_prod():
return reduce(f,lst)
def f(x,y):
return x*y
return laze_prod
return reduce(f,lst)
def f(x,y):
return x*y
return laze_prod
2015-03-06
讲师回答 / 廖雪峰
因为函数调用允许传入关键字参数:>>> def fn(*args):... pass... >>> fn(1, 2, 3) # OK>>> fn(1, 2, 3, last=4)Traceback (most recent call last): File "<stdin>", line 1, in <module>TypeError: fn() got an unexpected keyword argument '...
2015-03-06
任务描述和答案验证有点坑...
1. 没有明确A,B,C 的判别标准
2. 返回值中添加了 -xxx, 验证不通过。。
def get_grade(self):
if self.__score > 80:
return u"A-优秀"
elif self.__score >= 60:
return u"B-及格"
else:
return u"C-不及格"
1. 没有明确A,B,C 的判别标准
2. 返回值中添加了 -xxx, 验证不通过。。
def get_grade(self):
if self.__score > 80:
return u"A-优秀"
elif self.__score >= 60:
return u"B-及格"
else:
return u"C-不及格"
2015-03-06
已采纳回答 / rose0803
%是格式化的意思,%s是格式化字符串,%f是格式化浮点数,这句话的意思是把f.__name__插入到了%s这个位置,(t2-t1)计算后的值插入到了%f这个位置
2015-03-06
关于 _xxx 和 __xxx 的解释不太全面。
一般来讲,2个的区别是:
_xxx 可以在子类中使用。
__xxx 不可以在子类中使用。
一般来讲,2个的区别是:
_xxx 可以在子类中使用。
__xxx 不可以在子类中使用。
2015-03-05