摘要: 在看 Bottle 代码中看见 functools.wraps 这种用法。 def make_default_app_wrapper(name): """ Return a callable that relays calls to the current default app. """ a = 阅读全文
posted @ 2018-03-26 10:22 公众号python学习开发 阅读(511) 评论(0) 推荐(0) 编辑
摘要: 1.namedtuple 定义一个可以使用属性获取数据的tuple。 2.deque deque是为了高效实现插入和删除操作的双向列表,基本方法类似list,下面是简单的几个方法尝试。 阅读全文
posted @ 2018-03-26 10:01 公众号python学习开发 阅读(156) 评论(0) 推荐(0) 编辑