zoukankan      html  css  js  c++  java
  • python之禅

    偶然间看到了python之禅,觉的总结的挺好的,而且我觉的这些学问是通用的,不仅仅限于python。

    那么什么是python之禅?

    我想学过python的应该都知道。经验丰富的程序员倡导避繁就简,而python之禅是Tim Peters写的有关编写优秀Python代码的指导原则。

    其中包涵了Python社区的理念,是对新手来说很好的指导。


    内容:

    The Zen of Python, by Tim Peters
    
    Beautiful is better than ugly.
    Explicit is better than implicit.
    Simple is better than complex.
    Complex is better than complicated.
    Flat is better than nested.
    Sparse is better than dense.
    Readability counts.
    Special cases aren't special enough to break the rules.
    Although practicality beats purity.
    Errors should never pass silently.
    Unless explicitly silenced.
    In the face of ambiguity, refuse the temptation to guess.
    There should be one-- and preferably only one --obvious way to do it.
    Although that way may not be obvious at first unless you're Dutch.
    Now is better than never.
    Although never is often better than *right* now.
    If the implementation is hard to explain, it's a bad idea.
    If the implementation is easy to explain, it may be a good idea.
    Namespaces are one honking great idea -- let's do more of those!
    中文版:

    Python的禅,Tim Peters
    
    漂亮的要比丑陋的好。
    
    显式优于隐式。
    
    简单比复杂好。
    
    复杂的比更复杂的好。
    
    扁平优于嵌套。
    
    疏优于密。
    
    可读性是重要的。
    
    特殊情况不足以打破规则。
    
    虽然实用胜于美观。
    
    错误不应该默默逝去。
    
    除非明确否则沉默。
    
    面对歧义,拒绝猜测的诱惑。
    
    要有一个--最好是只有一个明显的方式去做。
    
    虽然这样可能并不明显,除非你是荷兰人。
    
    现在总比没有强。
    
    虽然不会比现在好。
    
    如果实现是很难解释的,这是一个坏主意。
    
    如果实现很容易解释,它可能是一个好主意。
    
    命名空间是一个伟大的想法-让我们做更多的!


    谨记谨记~~~~

  • 相关阅读:
    多线程GCD
    根据UITouch 自定义手势
    KVC在数据解析中的应用
    oc 文件读写操作
    oc 字典应用实例-城市查询省份
    oc 字典应用实例-成绩科目排序
    oc 数组应用实例-验证码
    协议 protocol
    概念杂记
    OC 类的继承 方法重载重写
  • 原文地址:https://www.cnblogs.com/vocaloid01/p/9514297.html
Copyright © 2011-2022 走看看