赞
踩
-- coding:utf-8 --
python2.7
1让列表的每一个元素都乘以2
print map(lambda x: x*2,range(1,11))python
2求列表中全部元素之和
print sum(range(1,100)) #range(1,100)表明从1到100(不包含100)web
3,判断一个字符串中是否存在某些词
wordlist = [“scala”,”akka”,”play framework”,”sbt”,”typesafe”]
tweet = “This is an example tweet talking about scala an sbt”
print map(lambda x:x in tweet.split(),wordlist)app
Python split()经过指定分隔符对字符串进行切片,若是参数num 有指定值,则仅分隔 num 个子字符串 这里默认为空格
4,读取文件
print open(“test.txt”).readlines()python2.7
5,祝你生日快乐
print map(lambda x: “happy birthday to” +(“YOU” if x!=2 else “dear Name”),range(4))svg
6,过滤列表中的数值
print reduce(lambda(a,b),c:(a+[c],b)if c >60 else (a,b+[c]),[49,58,76,82,88,90],([],[]))this
结果:
[2, 4, 6, 8, 10, 12, 14, 16, 18, 20]
4950
[True, False, False, True, False]
[‘this is a test\n’, ‘no more words’]
[‘happy birthday toYOU’, ‘happy birthday toYOU’, ‘happy birthday todear Name’, ‘happy birthday toYOU’]
([76, 82, 88, 90], [49, 58])scala
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。