- 博客(2)
- 收藏
- 关注
原创 使用迭代器,实现原生的range功能.
def __init__(self, start, stop=None, step=1): if stop is None: self.start = 0 self.stop = start else: self.start = start self.stop =...
2019-01-07 19:34:32 596
原创 retry装饰器
import timeclass retry(object): def __init__(self, max_retries=3, wait=0, exceptions=(Exception,)): self.max_retries = max_retries self.exceptions = exceptions self.wait ...
2019-01-07 18:40:06 270
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人