当前位置:   article > 正文

python新年有趣代码_有趣的超短Python代码

新年祝福python代码

-- 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

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/74600
推荐阅读
相关标签
  

闽ICP备14008679号