python小tips(二)

  1. set()


    image.png
  2. mutation



  3. __slot__Magic



    4 collections
    (1) defaultdict



    (2) OrderedDict
    在iter过程中能按照原有key的插入顺序输出

    (3) deque
    (4) namedtuple
    可以按名字查找内容的tuple, 类似于dict, 但是是immutable的, 可以通过._as_dict()转为dict


  4. Comprehensions




  5. exceptions
    http://book.pythontips.com/en/latest/exceptions.html
  6. future imports


你可能感兴趣的:(python小tips(二))