全部博文(106)
发布时间:2014-09-04 23:55:02
http://blog.jobbole.com/43922/初试牛刀假设你希望学习Python这门语言,却苦于找不到一个简短而全面的入门教程。那么本教程将花费十分钟的时间带你走入Python的大门。本文的内容介于教程(Toturial)和速查手册(CheatSheet)之间,因此只会包含一些基本概念。很显然,如果你希望真正学好一门语言,你还是需要亲自动.........【阅读全文】
发布时间:2014-04-11 00:43:21
http://www.oschina.net/translate/thirty-python-language-features-and-tricks-you-may-not-know1 介绍从我开始学习Python时我就决定维护一个经常使用的“窍门”列表。不论何时当我看到一段让我觉得“酷,这样也行!”的代码时(在一个例子中、在StackOverflow、在开源码软件中,等等).........【阅读全文】
发布时间:2014-01-28 00:01:02
https://medium.com/building-things-on-the-internet/40e9b2b36148Python has a terrible rep when it comes to its parallel processing capabilities. Ignoring the standard arguments about its threads and the GIL (which are mostly valid), the real problem I see with parallelism in Python isn't .........【阅读全文】
发布时间:2013-12-18 02:42:16
http://bbs.chinaunix.net/thread-4115645-1-1.htmlhttps://zapier.com/engineering/debugging-python-boss/def make_pie(self, ingredients): print '******WHAT IS GOING ON HERE******' print ingredients self.oven.preheat() print self.oven.temperature上面的一段代码有木有很像你平时调试代码的样子?好吧,.........【阅读全文】