我不是学计算机的,最早只是用过vba在excel里写一些简单的代码,学了python发现这个语言真是太牛了,非常讲解,尤其是这个函数式编程 廖老师也讲的深入浅出!
2016-01-24
def format_name(s):
s=s.lower()
s1=[]
for i in range(len(s)):
if i==0:
s1.append(s[0].upper())
continue
s1.append(s[i])
return "".join(s1)
print map(format_name, ['adam', 'LISA', 'barT'])
def format_name(s):
return s.lower().capitalize()
s=s.lower()
s1=[]
for i in range(len(s)):
if i==0:
s1.append(s[0].upper())
continue
s1.append(s[i])
return "".join(s1)
print map(format_name, ['adam', 'LISA', 'barT'])
def format_name(s):
return s.lower().capitalize()
2016-01-22
大哥我试了map可以用,reudce也能用!map返回的是惰性序列,你要list(map),reduce要导模块from functools import reduce
http://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000/0014317852443934a86aa5bb5ea47fbbd5f35282b331335000 大家可以去这个网站看看python3,廖雪峰大大的
@ weixin_James_1
在python3.4版本中,reduce和map函数都不可用.....
http://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000/0014317852443934a86aa5bb5ea47fbbd5f35282b331335000 大家可以去这个网站看看python3,廖雪峰大大的
@ weixin_James_1
在python3.4版本中,reduce和map函数都不可用.....
2016-01-21
大哥我试了map可以用,reudce不能用。
@ weixin_James_1
在python3.4版本中,reduce和map函数都不可用.....
@ weixin_James_1
在python3.4版本中,reduce和map函数都不可用.....
2016-01-21
from functools import partial
sorted_ignore = partial(sorted, key=str.lower)
print(sorted_ignore(['bob', 'about', 'Zoo', 'Credit']))
sorted_ignore = partial(sorted, key=str.lower)
print(sorted_ignore(['bob', 'about', 'Zoo', 'Credit']))
2016-01-18