def cmp_ignore_case(s1, s2):
s1 = s1.lower()
s2 = s2.lower()
return cmp(s1,s2)
print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
s1 = s1.lower()
s2 = s2.lower()
return cmp(s1,s2)
print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
2015-11-16
import math
def is_sqr(x):
return math.sqrt(x)%1==0
print filter(is_sqr, range(1, 101))
def is_sqr(x):
return math.sqrt(x)%1==0
print filter(is_sqr, range(1, 101))
2015-11-16
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])
2015-11-16
def format_name(s):
s = s.lower()
s = s[0].upper()+s[1:]
return s
print map(format_name, ['adam', 'LISA', 'barT'])
s = s.lower()
s = s[0].upper()+s[1:]
return s
print map(format_name, ['adam', 'LISA', 'barT'])
2015-11-16
def cmp_ignore_case(s1, s2):
return cmp(s1.upper(),s2.upper())
print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
return cmp(s1.upper(),s2.upper())
print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
2015-11-15
這裏暈死了 也不知道自己理解困難還是感冒頭暈 這連續級部分感覺 介紹脫節 liaoxuefeng的網站上倒是看起來連貫多了
http://www.cnblogs.com/ma6174/archive/2013/04/15/3022548.html 容易點看起來
装饰器的概念:对函数(参数,返回值等)进行加工处理,生成一个功能增强版的一个函数。再看看闭包的概念,这个增强版的函数不就是我们配置之后的函数吗?区别在于,装饰器的参数是一个函数或类,专门对类或函数进行加工处理。
http://www.cnblogs.com/ma6174/archive/2013/04/15/3022548.html 容易點看起來
装饰器的概念:对函数(参数,返回值等)进行加工处理,生成一个功能增强版的一个函数。再看看闭包的概念,这个增强版的函数不就是我们配置之后的函数吗?区别在于,装饰器的参数是一个函数或类,专门对类或函数进行加工处理。
2015-11-12