python
interhanchi
这个作者很懒,什么都没留下…
展开
-
python 中古怪的input()错误(已解决)
在windows下 [code]width = input('Please enter width: ') [/code] 这条语句 为什么我在 IDLE下运行就是 正确的 而在pydev+eclipse 下,一运行然后输入 数字 打个回车就会出错呢? 只能用raw_input来代替.错误显示 SyntaxError: unexpected EOF while parsing...2006-11-23 15:15:53 · 2471 阅读 · 0 评论 -
py3000的一些信息
原文看这里http://www.artima.com/weblogs/viewpost.jsp?thread=211200Guido van Rossum 大叔挺顽固的,哈哈。文中他表达了极度不爽FP,直接就说 I hate functional programming,还说 Don't use these with a lambda though; then a list c...2007-07-31 20:09:51 · 85 阅读 · 0 评论 -
Python 3000 Status Update
http://www.artima.com/weblogs/viewpost.jsp?thread=208549[quote]For a long time there wasn't much more than a list of regrets and flaws that were impossible to fix without breaking backward...2007-06-19 19:23:41 · 145 阅读 · 0 评论 -
操作符is的1个诡异问题
请看这段程序[code]a = 0b = 0while a is b: a += 1 b += 1print id(a), aprint id(b), b[/code]猜猜结果,呵呵结果是13013836 25713013812 257原因在这里:[quote]This is really hardcoded limit in...2007-06-13 09:44:00 · 72 阅读 · 0 评论 -
projecteulerProblem(1-10)
地址在下面,都是些有趣的数学题,有兴趣的可以去玩玩.http://www.projecteuler.net呵呵我刚做完前10题,以后每做完10题都会发到我博客上。PS:我用的是python和c写的。1[quote]If we list all the natural numbers below 10 that are multiples of 3 or 5, we get ...2007-04-14 21:22:11 · 221 阅读 · 0 评论 -
python之父要来北京了。
May 31 is Google Developer Day Guido Van Rossum, Google software engineer and creator of the Python programming language (Beijing); [quote] http://googleblog.blogspot.com/2007/04/m...2007-04-13 10:01:03 · 128 阅读 · 0 评论 -
今天Python2.5.1release了
http://www.python.org/download/releases/2.5.1/看了下介绍,是修正了一些bug, 其他的没什么改变,呵呵我还以为3.0要快放出来了呢.[quote]This is the first bugfix release of Python 2.5. Python 2.5 is now in bugfix-only mode; no new fe...2007-04-12 10:06:44 · 259 阅读 · 0 评论 -
Peter Norvig用python写的拼写纠错
文章在这里:http://www.norvig.com/spell-correct.html[code]import re, string, collectionsdef words(text): return re.findall('[a-z]+', text.lower()) def train(features): model = collections.d...2007-04-11 10:19:50 · 486 阅读 · 0 评论 -
今天发现了一个非常有意思的regex
判断一个数是否为质数的方法:[code]import redef is_prime(num): return not re.match(r"^1?$|^(11+?)\1+$", '1' * num)[/code]在这里转一下一个对这段代码评论http://blog.csdn.net/g9yuayon/archive/2007/03/19/1533798.a...2007-03-20 10:24:15 · 106 阅读 · 0 评论 -
这里有个讲Fp的文章,讲的很是有趣.
http://chn.blogbeta.com/232.html讲的很是不错,把FP讲的很生动,很清晰.2007-03-13 14:31:44 · 88 阅读 · 0 评论 -
python中的Error-checking策略
[b]参考 python in nutshell 的第三版.[/b] 1.在python中异常被认为无论什么时候只要能使程序更简单更强大就可以被使用。甚至异常可以被频繁的抛出. 2.在很多语言中,他们所遵从的是"look before you leap" (LBYL),也就是说,在尝试一个操作之前首先应该先检查一下.这里我的理解就是LBYL只是关心语法而不是关心语义的表...2007-03-02 21:12:24 · 641 阅读 · 0 评论 -
关于类中slots属性的用法的疑问
__slots__保存着实例变量的列表,并且在实例中保留空间以确定它们在实例中。一旦使用了__slots__,其它的实例变量就不能被赋值了。文档中是这么说的:[quote]This class variable can be assigned a string, iterable, or sequence of strings with variable names used by...2007-02-28 10:07:18 · 253 阅读 · 0 评论 -
python中是否可以实现'tail-call elimination'的优化
今天看 python in nutshell 时看到了这段Reader who are familiar Lisp, Scheme, or functional-programming languages must in particular be aware that Python does not implement the optimization of "tail-call eli...2007-02-13 16:49:06 · 181 阅读 · 0 评论 -
Jython Beta and 2.2 发布了
本以为已经挂了,今天无意中去逛了一下,竟然更新了,而且看了它的roadmap对以后还是挺期待的http://www.jython.org/Project/roadmap.html这次的更新有 :[quote]Jython 2.2 beta1 New features - much improved support for __unicode__ ...2007-02-09 21:26:31 · 105 阅读 · 0 评论 -
Python3K Alpha1放出
详细情况请看这里:http://python.org/download/releases/3.0/2007-09-01 00:47:03 · 125 阅读 · 0 评论