1、让列表中的每个元素都乘以2
print map(lambda x: x * 2, range(1,11))
2、求列表中的所有元素之和
print sum(range(1,1001))
3、判断一个字符串中是否存在某些词
wordlist = ["scala", "akka", "play framework", "sbt", "typesafe"]
tweet = "This is an example tweet talkingabout scala and sbt."
print map(lambda x: x in tweet.split(),wordlist)
4、读取文件
printopen("ten_one_liners.py").readlines()
5、《祝你生日快乐!》歌
print map(lambda x: "Happy Birthday to" + ("you" if x != 2 else "dear Name"),range(4))
9. 并行处理
import multiprocessing
import math
print list(multiprocessing.Pool(processes=4).map(math.exp,range(1,11)))
10. “Sieve of Eratosthenes”算法
埃拉托斯特尼筛法,是一种由希腊数学家埃拉托斯特尼所提出的一种简单检定素数的算法。要得到自然数n以内的全部素数,必须把不大于根号n的所有素数的倍数剔除,剩下的就是素数。
Python里没有Sieve of Eratosthenes操作符,但这对于Python来说并不是难事。
n = 50 #表示统计出50以内的所有素数。
print sorted(set(range(2,n+1)).difference(set((p * f) for p in range(2,int(n**0.5) + 2) for f in range(2,(n/p)+1))))