随笔分类 -  技术要点

摘要:1. 安装pyredis 首先安装pip 1 2 3 4 5 6 7 8 <SHELL># apt-get install python-pip ...... <SHELL># pip install --proxy=http://172.1.2.6:8080 redis Downloading r 阅读全文
posted @ 2016-09-01 22:23 永远之晨曦 阅读(19546) 评论(0) 推荐(0)
摘要:列表方法: 方法 说明 append( item ) 在列表末尾插入(item ) count( element ) 返回element在列表中出现的次数 extend( newlist ) 将newlist的元素插入列表末尾 index( element ) 返回element在列表中的索引,如果 阅读全文
posted @ 2016-06-21 19:26 永远之晨曦 阅读(9851) 评论(0) 推荐(0)