
python
文章平均质量分 75
小竹子Jobeth
这个作者很懒,什么都没留下…
展开
-
ubuntu下安装ipython notebook
1.安装pipsudo apt-get install python-pip2.安装ipythonsudo apt-get install ipython3.安装ipython notebooksudo apt-get install ipython-notebook4.启动ipython notebookipython notebook原创 2016-10-18 16:34:00 · 325 阅读 · 0 评论 -
Python标准库——collections模块的Counter类
1.collections模块collections模块自Python 2.4版本开始被引入,包含了dict、set、list、tuple以外的一些特殊的容器类型,分别是:OrderedDict类:排序字典,是字典的子类。引入自2.7。 namedtuple()函数:命名元组,是一个工厂函数。引入自2.6。 Counter类:为hashable对象计数,是字典的子类。引入自2.7。 deque转载 2016-10-20 09:52:59 · 871 阅读 · 0 评论