def cmp_ignore_case(s1, s2):
return s1.upper()>s2.upper() or -1
print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
return s1.upper()>s2.upper() or -1
print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
2017-12-26
def calc_prod(lst):
def c(x,y):
return x*y
def x():
a = reduce(c,lst)
return a
return x
f = calc_prod([1, 2, 3, 4])
print f()
def c(x,y):
return x*y
def x():
a = reduce(c,lst)
return a
return x
f = calc_prod([1, 2, 3, 4])
print f()
2017-12-25
def calc_prod(lst):
def x():
p=1
for a in lst:
p = p*a
return p
return x
f = calc_prod([1, 2, 3, 4])
print f()
def x():
p=1
for a in lst:
p = p*a
return p
return x
f = calc_prod([1, 2, 3, 4])
print f()
2017-12-25
def cmp_ignore_case(s1, s2):
if s1.lower() < s2.lower():
return -1
if s1.lower() > s2.lower():
return 1
return 0
print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
if s1.lower() < s2.lower():
return -1
if s1.lower() > s2.lower():
return 1
return 0
print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)
2017-12-25
看到评论 我才知道 这是难的啊 我还以为这是最基本的 都这么难,,,初学 练到这里是感觉有点吃力,不过还好 慢慢来
2017-12-25
def format_name(s):
#upper() 全转换成大写 lower() 全转换成小写
return s[0].upper() + s[1:].lower()
print map(format_name, ['adam', 'LISA', 'barT'])
def format_name(s):
return s.capitalize() #首字母大写,其余全部小写
print map(format_name, ['adam', 'LISA', 'barT'])
#upper() 全转换成大写 lower() 全转换成小写
return s[0].upper() + s[1:].lower()
print map(format_name, ['adam', 'LISA', 'barT'])
def format_name(s):
return s.capitalize() #首字母大写,其余全部小写
print map(format_name, ['adam', 'LISA', 'barT'])
2017-12-24
# _*_ coding:utf-8 _*_
def format_name(s):
return s.capitalize() #首字母大写,其余全部小写
print map(format_name, ['adam', 'LISA', 'barT'])
def format_name(s):
return s.title() #标题首字大写
print map(format_name, ['adam', 'LISA', 'barT'])
def format_name(s):
return s.capitalize() #首字母大写,其余全部小写
print map(format_name, ['adam', 'LISA', 'barT'])
def format_name(s):
return s.title() #标题首字大写
print map(format_name, ['adam', 'LISA', 'barT'])
2017-12-24
class Fib(object):
def __init__(self):
pass
def __call__(self,num):
a,b,L=0,1,[]
for i in range(num) :
L.append(a)
a,b=b,a+b
return L
f = Fib()
print f(10)
def __init__(self):
pass
def __call__(self,num):
a,b,L=0,1,[]
for i in range(num) :
L.append(a)
a,b=b,a+b
return L
f = Fib()
print f(10)
2017-12-24
任务描述和答案验证有点坑...
1. 没有明确A,B,C 的判别标准
2. 返回值中添加了 -xxx, 验证不通过。。
1. 没有明确A,B,C 的判别标准
2. 返回值中添加了 -xxx, 验证不通过。。
2017-12-24
解释器内部会将**kw拆分成对应的dict.
setattr()方法接受3个参数:setattr(对象,属性,属性的值)
setattr(self,k,v)相当于self.k = v
kw.iteritems()历遍字典kw的所有key和value,分别匹配k,v
setattr()方法接受3个参数:setattr(对象,属性,属性的值)
setattr(self,k,v)相当于self.k = v
kw.iteritems()历遍字典kw的所有key和value,分别匹配k,v
2017-12-24