译者:youngsterxyf
文章,教程和讲座(Articles, Tutorials and Talks)
使用Python Hacking超级马里奥(Hacking Super Mario Bros. With Python)
This post shows how you can use matplotlib's animation tool to create animated gifs based on Super Mario Bros …
译者:youngsterxyf
文章,教程和讲座(Articles, Tutorials and Talks)
使用Python Hacking超级马里奥(Hacking Super Mario Bros. With Python)
This post shows how you can use matplotlib's animation tool to create animated gifs based on Super Mario Bros …
原文:Decorators and Functional Python
译者:youngsterxyf
装饰器是Python的一大特色。除了在语言中的原本用处,还帮助我们以一种有趣的方式(函数式)进行思考。
我打算自底 …
原文: Python: The Dictionary Playbook
译者: youngsterxyf
我经常碰到关于Python中字典的各种样板代码,因此我决定在此展示一些,并分享完成相同操作的更加简洁的方式。
上演: 字典剧 …
译者:youngsterxyf
使用Python内置的defaultdict可以轻松定义一棵树:
def tree(): return defaultdict(tree)
就这样!
这段代码简单地说明一棵树是一个字典,其缺省 …
我们都知道圆周率pi的值是3.141592653...,那么这个值是怎么算出来的呢?一种方式是通过某种方式算出圆的面积或者周长,然后根据公式 …
原文: A primer on Python decorators
翻译: youngsterxyf
Python允许你,作为程序员,使用函数完成一些很酷的事情。在Python中,函数是一等对象(first-class object),这就意味着你可以像使 …
译者: youngsterxyf
Python FAQ的一部分
我只会PHP,那该怎么用Python来编写一个Web应用呢?
这是一个相当复杂的问题,甚至很容易就能写一本书来探讨Web开发与Python …
原文: Python object creation sequence
译者: youngsterxyf
[本文讨论的Python版本为3.x]
本文旨在探究Python中新对象的创建过程。正如我在前一篇文章中所解释的,对象的创建只是调用可调用对 …