美文网首页coding
python小tips(二)

python小tips(二)

作者: 梅八哥 | 来源:发表于2018-07-17 09:48 被阅读0次
  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(二)

    本文链接:https://www.haomeiwen.com/subject/horspftx.html