这篇文章将为大家详细讲解有关如何使用Python单行代码实现具体功能,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
1)让列表中每个元素都乘以2
代码:print map(lambda x:x*2,range(1,11))
2)求列表中所有元素的和
代码:print sun(range(1,1001))
3)查询某个字符创中是否包含特定的词
代码:wordlist=[“scala”,”akka”,”play framework”,”typesafe”]
Tweet=”this is an example tweet talking about scala and sbt”
Print map(lambda x:x in tweet.split(),woordlist)
4)读取文件
代码:print open(“ten_one_liners.py”).redlines()
5)一句话打印《祝你生日快乐》歌
代码:print map(lambda x:”Happy Birthday to”+(“you”if x!=2 else”dear Name”),ragne(4))
6)过滤列表中的数值
代码:print reduce(lambda(a,b),c:(a+[c],b) if c >60 else(a,b + [c]),[49,58,76,82,88,90],([],[])
7)获取XML webservice数据并分析
From xml.dom.minidom import parse,parseString
Iprort urllib2
#注意,将他转换成XML格式化并打印出来
Print parse(urllib2.urlopen(“http://search.twitter.com/search.atom?&q=python”)).toprettxml(encoding=”utf-8”)
8)找到列表中最小或最大的一个数字
print min([14,35,-7,46,98])
print max([14,35,-7,46,98])
9)并行处理
Imprty multiprocessing
Import math
Print list(multiprosessing.Pool(processes=4).map(math.exp,range(1,11)))
关于“如何使用Python单行代码实现具体功能”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。