python
cw437
这个作者很懒,什么都没留下…
展开
-
python 使用国内源加速pip命令安装
在国内通过pip安装一些python包的时候,经常由于网络原因速度很慢,使用国内的镜像源可以解决此问题,速度嗖嗖的 使用中科大镜像源: pip install xxxx -i http://pypi.mirrors.ustc.edu.cn/simple --trusted-host pypi.mirrors.ustc.edu.cn --timeout=60原创 2018-01-17 10:43:23 · 482 阅读 · 0 评论 -
python的迭代器模式
from collections.abc import Iterable from collections.abc import Iterator class IterableClass(Iterable): class IteratorClass(Iterator): def __init__(self, l): self.l = l ...原创 2019-09-04 10:34:00 · 159 阅读 · 0 评论