网站首页 > 基础教程 正文
编程派微信号:codingpy
在昨天分享的《请不要为了炫耀而写出超短代码》一文中,提到了两种短代码:一种是写给自己看的,另一种是写给别人看的。本文再分享一些短代码的示例,有些虽短,但也有可读性;有些就纯粹属于写给自己看的了。
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 talking about scala and sbt."
print map(lambda x: x in tweet.split(),wordlist)
4、读取文件
print open("ten_one_liners.py").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],([],[]))
7. 获取XML web service数据并分析
from xml.dom.minidom import parse, parseString
import urllib2
# 注意,我将它转换成XML格式化并打印出来
print parse(urllib2.urlopen("http://search.twitter.com/search.atom?&q=python")).toprettyxml(encoding="utf-8")
8. 找到列表中最小或最大的一个数字
print min([14, 35, -7, 46, 98])
print max([14, 35, -7, 46, 98])
9. 并行处理
import multiprocessing
import math
print list(multiprocessing.Pool(processes=4).map(math.exp,range(1,11)))
10. “Sieve of Eratosthenes”算法
Python里没有埃拉托色尼选筛法(Sieve of Eratosthenes)操作符,但这对于Python来说并不是难事。
n = 50 # 求 2-50 之间的素数
print sorted(set(range(2,n+1)).difference(set((p * f) for p in range(2,int(n**0.5
更多Python教程,请关注微信公众号编程派(codingpy)。
- 上一篇: 2024年GESP6月认证Python一级试卷解析
- 下一篇: Python100道真题题库
猜你喜欢
- 2024-12-13 人教版小学六年级数学下册期末试卷9
- 2024-12-13 Python的for语句与C或Pascal的区别
- 2024-12-13 截尾法判断整除——同余定理的应用
- 2024-12-13 有哪些好玩的 Python 代码?
- 2024-12-13 爆肝整理!大牛总结出的13道经典Python面试题,你都会吗?
- 2024-12-13 记住这份软件测试八股文还怕不能拿offer?你值得拥有
- 2024-12-13 如何在你的项目中混合 Rust 和 Python
- 2024-12-13 过瘾!100道Python入门练习题
- 2024-12-13 2020-09-20:如何判断一个数是质数?
- 2024-12-13 【python】(9)迭代与生成器
- 最近发表
- 标签列表
-
- gitpush (61)
- pythonif (68)
- location.href (57)
- tail-f (57)
- pythonifelse (59)
- deletesql (62)
- c++模板 (62)
- css3动画 (57)
- c#event (59)
- linuxgzip (68)
- 字符串连接 (73)
- nginx配置文件详解 (61)
- html标签 (69)
- c++初始化列表 (64)
- exec命令 (59)
- canvasfilltext (58)
- mysqlinnodbmyisam区别 (63)
- arraylistadd (66)
- node教程 (59)
- console.table (62)
- c++time_t (58)
- phpcookie (58)
- mysqldatesub函数 (63)
- window10java环境变量设置 (66)
- c++虚函数和纯虚函数的区别 (66)