大家都来晒晒您见过的最优秀最实用的一段python代码
import re, collections def words(text): return re.findall('[a-z]+', text.lower()) def train(features): model = collections.defaultdict(lambda: 1) for f in features: model[f] += 1 return model NWORDS = train(words(file('big.txt').read())) alphabet = 'abcdefghijklmnopqrstuvwxyz' def edits1(word): splits = [(word[:i], word[i:]) for i in range(len(word) + 1)] deletes = [a + b[1:] for a, b in splits if b] transposes = [a + b[1] + b[0] + b[2:] for a, b in splits if len(b)>1] replaces = [a + c + b[1:] for a, b in splits for c in alphabet if b] inserts = [a + c + b for a, b in splits for c in alphabet] return set(deletes + transposes + replaces + inserts) def known_edits2(word): return set(e2 for e1 in edits1(word) for e2 in edits1(e1) if e2 in NWORDS) def known(words): return set(w for w in words if w in NWORDS) def correct(word): candidates = known([word]) or known(edits1(word)) or known_edits2(word) or [word] return max(candidates, key=NWORDS.get) ;
Peter Norvig的Spelling Corrector
好吧,应该是这段,2011最佳代码Scala版
def believe(x: Any) = x match { case b: Boolean => "I believe." case _ => "It's miracle!" }
推荐一个java的one-liner,实现读取流里的字符
String text = new Scanner( source ).useDelimiter("\\A").next();
这里给上关于one-liner读取流内容的博客地址,有兴趣大家可以看看
print“hello world”
print(“hello world”)
fmt.printf(“hello world”)
printf("hello world")
System.out.print("hello world")
document.write("hello world")
echo"hello world"
alert('Hello, World.');
hello world 我们学习的第一句语言 无论何种方式
无疑是最棒的。。
#include<stdio.h> int main() { printf("hello world\n"); return 0; }
hello world
自己写的
lazy val fibs: Stream[Int] = 1 #:: 1 #:: (fibs zip fibs.tail).map(x => x._1 + x._2)
用Haskell更漂亮
qsort [] = []
qsort (x:xs) = qsort [a|a<-xs, a<x] ++ [x] ++ qsort [a|a<-xs, a>=x]
http://jsfiddle.net/justjavac/KbetG/
rm -rf /usr/ foo/bar
最神奇的代码莫过于 Quake III 中不可思议的求解平方根实现方法,尤其是神奇的常量0x5f3759df
float Q_rsqrt( float number ) { long i; float x2, y; const float threehalfs = 1.5F; x2 = number * 0.5F; y = number; i = * ( long * ) &y; // evil floating point bit level hacking i = 0x5f3759df - ( i >> 1 ); // what the fuck? y = * ( float * ) &i; y = y * ( threehalfs - ( x2 * y * y ) ); // 1st iteration // y = y * ( threehalfs - ( x2 * y * y ) ); // 2nd iteration, this can be removed #ifndef Q3_VM #ifdef __linux__ assert( !isnan(y) ); // bk010122 - FPE? #endif #endif return y; }
还有这句比较好玩的:
rm -rf /usr /lib/nvidia-current/xorg/xorg
源自 https://github.com/MrMEEE/bumblebee/c...
= =这种问题,不应该出现在知乎么?为啥在segmentdefault。。。。。
10 PRINT "BASIC" 20 END
真的启蒙
fun append ([],ys) =ys | append (x::xs',ys) = x ::append (xs',ys)
try { if(you.believe(it) || !you.believe(it) ){ I.believe(it); } }catch(Exception ex){ throw new Exception ("It's a miracle!"); }finally{ it.justHappened(); }
很多,我觉得不需要文档和注释扫一眼就能看懂的代码都是很棒的代码。
玩蛇网文章,转载请注明出处和文章网址:https://www.iplaypy.com/wenda/wd20529.html
相关文章 Recommend
- • 豆瓣API 40次/分钟的访问限制怎么办
- • 大家一起来讨论抽用正则取优酷视频并生成播放
- • 关于web.py性能优化方法大家闲聊讨论下
- • 请大家荐些适合新手练习python开源项目学习学习
- • 求大家帮解一道关于python分割的算法题
- • 使用pymedia播放音频大家有遇到噪音问题吗?怎么解
- • 请大家给个做vpn server的思路,能讲讲vpn原理最好
- • Python 2.X版本中闭包是怎么实现的?
- • 请大家帮看下这两种不同的编码风格推荐哪种
- • 想用Python实现mail验证功能,请大家多多指导
- • Flask如何搭建网站没有思路,大家帮我想想办法
- • Python编写一个顽固程序不能被删除,求大家给个思
必知PYTHON教程 Must Know PYTHON Tutorials
- • python 解释器
- • python idle
- • python dir函数
- • python 数据类型
- • python type函数
- • python 字符串
- • python 整型数字
- • python 列表
- • python 元组
- • python 字典
- • python 集合
- • python 变量
- • python print
- • python 函数
- • python 类定义
- • python import
- • python help
- • python open
- • python 异常处理
- • python 注释
- • python continue
- • python pass
- • python return
- • python global
- • python assert
- • python if语句
- • python break
- • python for循环
- • python while循环
- • python else/elif
- • lambda匿名函数
必知PYTHON模块 Must Know PYTHON Modules
- • os 模块
- • sys 模块
- • re 正则表达式
- • time 日期时间
- • pickle 持久化
- • random 随机
- • csv 模块
- • logging 日志
- • socket网络通信
- • json模块
- • urlparse 解析URL
- • urllib 模块
- • urllib2 模块
- • robotparser 解析
- • Cookie 模块
- • smtplib 邮件
- • Base64 编码
- • xmlrpclib客户端
- • string 文本
- • Queue 线程安全
- • math数学计算
- • linecache缓存
- • threading多线程
- • sqlite3数据库
- • gzip压缩解压
最新内容 NEWS
- • django app提供pv信息的方法是什么
- • Django项目版本升级如何操作?
- • django较多数据传递如何优雅的呈现
- • django1.7获取参数问题求助
- • Django1.7使用内置comment遇到问题
- • python mysql数据库做insert操作时报_mysql_ex
- • 关于python mysql的duplicate insert机制的疑问
- • pymongo使用insert函数批量插入被中断要怎么
- • Python程序员解决棘手问题的常用库
- • 求助关于restfull api接口几个问题
图文精华 RECOMMEND
-
django1.7获取参数问题求助
-
Python程序员解决棘手问题的常用库
-
求问str()同__str__原理上有什么不同
-
scrapy框架里面用link extractor怎么能
-
python {}.fromkeys创建字典append添加操
-
python3 类型Type str doesn't support th
热点文章 HOT
- 学习Python有什么好的书籍推荐?
- Python匿名函数 Lambda表达式作用
- Python与Java、C、Ruby、PHP等编程语言有什么
- Python 正则中文网页字符串提取问题
- 如何为实时性应用存取经纬度?django my
- 想用python做个客户端,在二维码登录这个地
- 有让IDE可识别Python函数参数类型的方法吗
- Python字符串转换成列表正则疑问