最新回答 / DOS世界树
return j*j 返回的是一个是数值,而print f1(), f2(), f3()#fs中的元素是 函数,如果要使用return j*j,就用print f1 ,f2,f3
2018-07-31
最赞回答 / liujlb
不能用if。lambda函数后面是参数,然后是冒号,然后是返回值。你用了if就相当于 return if ...,这肯定不对啊。正确的方式是使用逻辑与运算: s and (len(s.strip()) > 0)
2018-07-31
如果这里代码始终不通过,可以参考一下class Person(object):
def __init__(self, name, score):
self.name = name
self._score = score
p = Person('Bob', 59)
print p.name
print p._score
print 'attributeerror'
def __init__(self, name, score):
self.name = name
self._score = score
p = Person('Bob', 59)
print p.name
print p._score
print 'attributeerror'
2018-07-31
time.time( ) 返回当前时间的时间戳(1970纪元后经过的浮点秒数)
time.clock( ) 以浮点数计算的秒数返回当前的CPU时间。用来衡量不同程序的耗时。
%S 秒(00-59)
time.clock( ) 以浮点数计算的秒数返回当前的CPU时间。用来衡量不同程序的耗时。
%S 秒(00-59)
2018-07-31
最新回答 / 2624c
emm我想明白了,上面我代码空格有点乱需要修正下,然后问题答案是因为定义def f()的时候是没有参数的,直接执行fs.append(f())就行,加了i反而不对,因为f()函数是不需要加参数的,如果def f(i)的话,后面可以fs.append(f(i))
2018-07-31
def cmp_ignore_case(s1, s2):
return cmp(s1.lower(),s2.lower())
print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
return cmp(s1.lower(),s2.lower())
print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
2018-07-31
def prod(x, y):
return x*y
print reduce(prod, [2, 4, 5, 7, 12])
return x*y
print reduce(prod, [2, 4, 5, 7, 12])
2018-07-31
def format_name(s):
return s[:1].upper()+s[1:].lower()
print map(format_name, ['adam', 'LISA', 'barT'])
return s[:1].upper()+s[1:].lower()
print map(format_name, ['adam', 'LISA', 'barT'])
2018-07-31
import math
def add(x, y, f):
return f(x) + f(y)
print add(25, 9, math.sqrt)
def add(x, y, f):
return f(x) + f(y)
print add(25, 9, math.sqrt)
2018-07-30