02 2016 档案

摘要:pip官网文档 https://pip.pypa.io/en/latest/reference/pip.html 若没有将c:\Python27\Scripts加入到path环境变量,可以在c:\Python27\Scripts目录下执行pip命令。 常用命令 1. 列出已安装的package c: 阅读全文
posted @ 2016-02-24 11:02 郭导技术小站 阅读(1173) 评论(0) 推荐(0)
摘要:1.3.5 OrderedDict 有序字典 OrderedDict是dict的子类,它记住了内容添加的顺序。 import collections print 'Regular dictionary:' d = {} d['a'] = 'A' d['b'] = 'B' d['c'] = 'C' f 阅读全文
posted @ 2016-02-18 10:59 郭导技术小站 阅读(8470) 评论(0) 推荐(0)