您的位置:首页 > 编程语言 > Python开发

有趣的超短Python代码

2016-07-12 23:06 281 查看

-- coding:utf-8 --

python2.7

1让列表的每个元素都乘以2

print map(lambda x: x*2,range(1,11))

2求列表中所有元素之和

print sum(range(1,100)) #range(1,100)代表从1到100(不包含100)

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)

Python split()通过指定分隔符对字符串进行切片,如果参数num 有指定值,则仅分隔 num 个子字符串 这里默认为空格

4,读取文件

print open(“test.txt”).readlines()

5,祝你生日快乐

print map(lambda x: “happy birthday to” +(“YOU” if x!=2 else “dear Name”),range(4))

6,过滤列表中的数值

print reduce(lambda(a,b),c:(a+[c],b)if c >60 else (a,b+[c]),[49,58,76,82,88,90],([],[]))

结果:

[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])
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  python