Just relax, take it easy..

0%

hidden features of Python笔记

最近看了关于python的两个很不错的资料

  1. PEP 8 (Style Guide for Python Code)

  2. Hidden features of Python [closed]

做一下第二个的笔记 加深印象

Quick links to answers:

  • Argument Unpacking
  • '*' 不就是c语言里取指针的值 直接把list和dictionary里的值变成函数的参数了 但实际很少用到把
    1
    2
    3
    4
    5
    6
    7
    8
    def draw_point(x, y):
    # do some magic

    point_foo = (3, 4)
    point_bar = {'y': 3, 'x': 2}

    draw_point(*point_foo)
    draw_point(**point_bar)

  • Braces
  • 运行的结果: from __future__ import braces SyntaxError: not a chance 貌似是个玩笑, 想要引入c语言style的花括号 结果是not a chance、、
    1
    from __future__ import braces

  • Chaining Comparison Operators
  • 连续的比较符吧,实际中还是挺有用的 突然想到的: if A and B in L: → if (A and B) in L:
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    >>> x = 5
    >>> 1 < x < 10
    True
    >>> 10 < x < 20
    False
    >>> x < 10 < x*10 < 100
    True
    >>> 10 > x <= 9
    True
    >>> 5 == x > 4
    True

  • Decorators
  • 装饰器,之前也从来没有用过,以后尝试一下 看了一篇装饰器的文章,写的挺好的 大致明白了原理和应用 http://www.cnblogs.com/coderzh/archive/2010/04/27/python-cookbook33-Decorators.html
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    >>> def print_args(function):
    >>> def wrapper(*args, **kwargs):
    >>> print 'Arguments:', args, kwargs
    >>> return function(*args, **kwargs)
    >>> return wrapper

    >>> @print_args
    >>> def write(text):
    >>> print text

    >>> write('foo')
    Arguments: ('foo',) {}
    foo
    ```


    <li><a href="http://stackoverflow.com/questions/101268/hidden-features-of-python#113198">Default Argument Gotchas / Dangers of Mutable Default arguments</a></li>
    I found this a lot easier to understand when I learned that the default arguments live in a tuple that's an attribute of the function,
    e.g. foo.func_defaults. Which, being a tuple, is immutable.
    还是不太明白
    ```python
    >>> def foo(x=[]):
    ... x.append(1)
    ... print x
    ...
    >>> foo()
    [1]
    >>> foo()
    [1, 1]
    >>> foo()
    [1, 1, 1]
    Instead, you should use a sentinel value denoting "not given" and replace with the mutable you'd like as default:

    >>> def foo(x=None):
    ... if x is None:
    ... x = []
    ... x.append(1)
    ... print x
    >>> foo()
    [1]
    >>> foo()
    [1]
  • Descriptors
  • Python描述符(descriptor)解密 http://www.geekfan.net/7862/
  • Dictionary default .get value
  • 前一种如果不包含键值,会报错,后一种会返回第二个参数的值。
    1
    sum[value] = sum.get(value, 0) + 1
  • Docstring Tests
  • 不懂啥意思
  • Ellipsis Slicing Syntax
  • Enumeration
  • For/else
  • Function as iter() argument
  • Generator expressions
  • import this
  • 这个吊。。 import this # btw look at this module's source :)

    De-cyphered:

    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!

  • In Place Value Swapping
  • List stepping
  • __missing__ items
  • Multi-line Regex
  • 多行正则表达式 有机会要学一下
  • Named string formatting
  • Nested list/generator comprehensions
  • 双重循环生成list 炫酷。。
    1
    2
    [(i,j) for i in range(3) for j in range(i) ]      
    ((i,j) for i in range(4) for j in range(i) )
  • New types at runtime
  • .pth files
  • ROT13 Encoding
  • Regex Debugging
  • Sending to Generators
  • 生成器(generator) 有时间要深入学习一下
  • Tab Completion in Interactive Interpreter
  • Ternary Expression
  • try/except/else
  • Unpacking+print() function
  • with statement