python小tips(二)
2018-07-17  本文已影响0人 
梅八哥
- 
set()
image.png
 - 
mutation
 - 
__slot__Magic
4 collections
(1) defaultdict
(2) OrderedDict
在iter过程中能按照原有key的插入顺序输出
(3) deque
(4) namedtuple
可以按名字查找内容的tuple, 类似于dict, 但是是immutable的, 可以通过._as_dict()转为dict
 - 
Comprehensions
 - exceptions
http://book.pythontips.com/en/latest/exceptions.html - 
future imports