返回一个函数,这不就是一个装饰器吗?
def calc_prod(lst):
def wrapper(*args, **kwargs):
res = reduce(lambda x, y: x*y, lst)
return res
return wrapper
f = calc_prod([1, 2, 3, 4])
print f()
def calc_prod(lst):
def wrapper(*args, **kwargs):
res = reduce(lambda x, y: x*y, lst)
return res
return wrapper
f = calc_prod([1, 2, 3, 4])
print f()
2017-12-01
import math
from math import sqrt
载入库有啥区别 这两句 加了第二句就可以用sqrt函数了 第一句不行
from math import sqrt
载入库有啥区别 这两句 加了第二句就可以用sqrt函数了 第一句不行
2017-12-01
class Person:
pass
xiaoming = Person()
xiaohong = Person()
print xiaoming
print xiaohong
print xiaoming==xiaohong
pass
xiaoming = Person()
xiaohong = Person()
print xiaoming
print xiaohong
print xiaoming==xiaohong
2017-11-29
def cmp_ignore_case(s1, s2):
s3=s1.lower()
s4=s2.lower()
if s3>s4:
return 1
if s3<s4:
return -1
return 0
print sorted(['bob', 'about', 'Zoo', 'Credit'],cmp_ignore_case)
s3=s1.lower()
s4=s2.lower()
if s3>s4:
return 1
if s3<s4:
return -1
return 0
print sorted(['bob', 'about', 'Zoo', 'Credit'],cmp_ignore_case)
2017-11-29
import math
def is_sqr(x):
return math.sqrt(x)==int(math.sqrt(x))
print filter(is_sqr, range(1,101))
def is_sqr(x):
return math.sqrt(x)==int(math.sqrt(x))
print filter(is_sqr, range(1,101))
2017-11-29
def calc_prod(lst):
def b():
return reduce(a,lst)
return b
f = calc_prod([1, 2, 3, 4])
def a(x,y):
return x*y
print f()
连这样都行 这说明reduce(,F)中的函数F只要在执行完 f()的调用前定义好F就行 其实一直不明白reduce是怎么调用它里面的函数的
def b():
return reduce(a,lst)
return b
f = calc_prod([1, 2, 3, 4])
def a(x,y):
return x*y
print f()
连这样都行 这说明reduce(,F)中的函数F只要在执行完 f()的调用前定义好F就行 其实一直不明白reduce是怎么调用它里面的函数的
2017-11-29
def format_name(s):
return s[0].upper()+s[1:].lower()
print map(format_name, ['adam', 'LISA', 'barT'])
return s[0].upper()+s[1:].lower()
print map(format_name, ['adam', 'LISA', 'barT'])
2017-11-29
def calc_prod(lst):
def prod():
s = 1
for x in lst:
s = s * x
return s
return prod
f = calc_prod([1, 2, 3, 4])
print f()
def prod():
s = 1
for x in lst:
s = s * x
return s
return prod
f = calc_prod([1, 2, 3, 4])
print f()
2017-11-29