码迷,mamicode.com
首页 >  
搜索关键字:python list tuple    ( 183691个结果
linux中python easy_install命令
centos 下安装 python easy_installcurl -O http://peak.telecommunity.com/dist/ez_setup.pypython ez_setup.py -U setuptools如果出现 setuptools.egg下载不了 更改ez_setup...
分类:编程语言   时间:2014-05-09 17:06:03    阅读次数:665
python web server gateway interface (wsgi ) notes
前言: 注:如果需要得到支持批Python3.x以及包含了勘误表,附录,和说明的更新版规范,请查看PEP 3333 摘要: 这篇文档详细说明了一套在web服务器与Python web应用程序(web框架)之间的已提出的标准接口,从而方便web应用在各种web服务器之间的移植。理论和目标 Python...
分类:编程语言   时间:2014-05-09 16:52:10    阅读次数:721
PAT 1074. Reversing Linked List (25)
PAT 1074. Reversing Linked List (25)
分类:其他好文   时间:2014-05-09 12:46:25    阅读次数:316
一个python小脚本——合并一个文件夹下的所有文本
#coding:utf8import sys,osdef process(path): for f in os.listdir(path): fin = open(path+"/"+f,"r") print...
分类:编程语言   时间:2014-05-09 12:41:07    阅读次数:362
Reverse Nodes in k-Group
Given a linked list, reverse the nodes of a linked listkat a time and return its modified list.If the number of nodes is not a multiple ofkthen left-o...
分类:其他好文   时间:2014-05-09 12:00:21    阅读次数:309
基础知识
1. type()函数,指出指定对象的类型。2. tuple和list的区别:tuple是不能改变的,与之对应,它没有remove等函数,而list具有相应的函数3.tuple或者list访问:范围引用: 基本样式[下限:上限:步长]>>>print s1[:5] # 从开始到下标4 (下标5的元素...
分类:其他好文   时间:2014-05-09 11:27:19    阅读次数:300
复习java基础第三天(集合)
一、Collection常用的方法:Java 集合可分为 Set、List 和 Map 三种体系: Set:无序、不可重复的集合。List:有序,可重复的集合。 Map:具有映射关系的集合。Collection 接口是 List、Set 和 Queue 接口的父接口,该接口里定义的方法既可用于操作 ...
分类:编程语言   时间:2014-05-09 11:21:59    阅读次数:549
Python 标准库 urllib2 的使用细节
刚好用到,这篇文章写得不错,转过来收藏。 转载自道可道|Python 标准库 urllib2 的使用细节Python 标准库中有很多实用的工具类,但是在具体使用时,标准库文档上对使用细节描述的并不清楚,比如 urllib2 这个 HTTP 客户端库。这里总结了一些 urllib2 库的使用细节。1 ...
分类:编程语言   时间:2014-05-08 21:53:59    阅读次数:432
ios PullToRefresh using animated GIF or image array or Vector image
说说那些令人惊叹的下拉效果1. 动画下拉,这里借用一下github的资源优点:直接用gif图处理,下拉进度完全按照gif图运行时间,只要时间和下拉进度匹配就可以了, 效果很流畅https://dribbble.com/shots/1418440-Twisted-gif?list=searches&t...
分类:移动开发   时间:2014-05-08 21:28:47    阅读次数:519
java中的排列组合
使用之前需要声明一个Combine的对象,调用startCombile方法,可返回想要的组合数或者个数,参数介绍很重要public class Combine { private Object[] oldArr; private Object[] newArr; private List list....
分类:编程语言   时间:2014-05-08 21:16:20    阅读次数:425
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!