已采纳回答 / ZQian
def count(): fs = [] for i in range(1, 4): def f(j): return j*j fs.append(f(i)) return fsf1, f2, f3 = count()print f1, f2, f3这样就对了应该返回int值 F1()是函数而不是一个值
2016-05-23
import math
def add(x, y, f):
return sqrt((x)) + sqrt(f(y))
print add(25, 9,abs)
def add(x, y, f):
return sqrt((x)) + sqrt(f(y))
print add(25, 9,abs)
2016-05-23
print filter(lambda s: s and len(s.strip()) > 0, ['test', None, '', 'str', ' ', 'END'])
2016-05-21
def calc_prod(lst):
def f(x, y):
return x * y
def chengji():
return reduce(f, lst)
return chengji
fun = calc_prod([1, 2, 3, 4])
print fun()
def f(x, y):
return x * y
def chengji():
return reduce(f, lst)
return chengji
fun = calc_prod([1, 2, 3, 4])
print fun()
2016-05-21
已采纳回答 / 慕哥1236559
前面理解是对的,后面应该这么来理解,int是一种数据类型,你定义一个变量i,i就是int这种数据类型的一种实例,定义一个实例 p = Person(),p是Person的一个实例,Person可以理解为一种自定义的数据类型
2016-05-20
def count():
fs = []
for i in range(1, 4):
def f():
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():
return i*i
fs.append(f())
return fs
f1, f2, f3 = count()
print f1,f2,f3
2016-05-20
最赞回答 / 慕粉3883780
你把if去掉就好了,匿名函数也写错了。正确表达式这样的:<...code...>if不是不能和isinstance连用,只是不能一起放在匿名函数里。匿名函数里":"后面是一个表达式。
2016-05-20
我的代码在我这里执行结果是24。
在这里死活通不过。
def calc_prod(lst):
def f1(x,y):
return x*y
def f():
return reduce(f1,lst)
return f
f = calc_prod([1, 2, 3, 4])
print f()
在这里死活通不过。
def calc_prod(lst):
def f1(x,y):
return x*y
def f():
return reduce(f1,lst)
return f
f = calc_prod([1, 2, 3, 4])
print f()
2016-05-20