最新回答 / 5941
首先,我想说,请你把完整的代码放上来,不要放这种存在错误的,不能执行的代码。第二,None 应该是你的print test()打印出来的,因为你的test()函数没有定义返回值,所以返还了个None,也就打印了None
2015-07-21
最赞回答 / 5941
and 就是与,s and len(s.strip()) > 0的意思要根据and的短路作用来看。如果s不存在,返回s; 如果s存在,返回len(s.strip()) > 0即如果s不存在,返回None,如果s存在,则判断s去掉空格之后的长度是否大于0,如果是,返回True,如果否则返回False。你注意看题中的list:['test', None, '', 'str', ' ', 'END'],其中有个None,在有's and' 的时候,是不会进行后面的len(s.strip())&g...
2015-07-20
def count():
fs = []
for i in range(1, 4):
def f(i=i):
return i*i
fs.append(f)
return fs
f1, f2, f3 = count()
print f1(), f2(), f3()
fs = []
for i in range(1, 4):
def f(i=i):
return i*i
fs.append(f)
return fs
f1, f2, f3 = count()
print f1(), f2(), f3()
2015-07-20
def calc_prod(lst):
def m():
return reduce(lambda x,y:x*y,lst)
return m
f = calc_prod([1, 2, 3, 4])
print f()
def m():
return reduce(lambda x,y:x*y,lst)
return m
f = calc_prod([1, 2, 3, 4])
print f()
2015-07-20
def cmp_ignore_case(s1, s2):
s1=s1.lower()
s2=s2.lower()
if s1 > s2:
return 1
if s1 < s2:
return -1
return 0
print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
s1=s1.lower()
s2=s2.lower()
if s1 > s2:
return 1
if s1 < s2:
return -1
return 0
print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
2015-07-20
print 'call %s() in %f %s'%(f.__name__,t,unit)这是个啥???
2015-07-18
已采纳回答 / 5941
这就是个打印语句,中间的%s,%f分别代表字符参数和浮点参数,通过引号后面的%()来传递参数,f代表的是def perf_decorator(f):中的f,也就是你在@performance('ms') def factorial(n): return reduce(lambda x,y: x*y, range(1, n+1))中定义的factorial函数,f.__name__好像还没讲到,不过我认为是这个函数的名字,即‘factorial’,应该是python提供的。unit则是@pe...
2015-07-18
正确的写法:
class C(A, B)
def __init__(self, a, b):
A.__init__(self, a)
B.__init__(self, b)
建议养成习惯,不要使用super()这个函数,即便是单继承,也使用上面的方式
class C(A, B)
def __init__(self, a, b):
A.__init__(self, a)
B.__init__(self, b)
建议养成习惯,不要使用super()这个函数,即便是单继承,也使用上面的方式
2015-07-18
class A(object)
def __init__(self, a):
self.a = a
class B(object)
def __init__(self, b):
self.b = b
class C(A, B)
def __init__(self, a, b):
super(C, self)__init__(a, b) #<----这样写是错误的
def __init__(self, a):
self.a = a
class B(object)
def __init__(self, b):
self.b = b
class C(A, B)
def __init__(self, a, b):
super(C, self)__init__(a, b) #<----这样写是错误的
2015-07-18