码迷,mamicode.com
首页 >  
搜索关键字:list    ( 54897个结果
Python dict & set
1Dict和Set1.1Dict(无序键值不可重复)Python内置了字典:dict的支持,dict全称dictionary,在其他语言中也称为map,使用键-值(key-value)存储,具有极快的查找速度。举个例子,假设要根据同学的名字查找对应的成绩,如果用list实现,需要两个list:names=[‘Michael‘,‘Bob‘,..
分类:编程语言   时间:2016-07-04 07:45:18    阅读次数:156
一次简单的死锁分析
数据库错误日志中监测到如下死锁: deadlock-list deadlock victim=process16fc9dd498 process-list process id=process16fc9dd498 taskpriority=0 logused=0 waitresource=KEY: ...
分类:其他好文   时间:2016-07-04 01:11:50    阅读次数:348
XML参数转换为Object,并转换为List或DataTable
demo效果: ...
分类:其他好文   时间:2016-07-04 01:08:55    阅读次数:172
Python list &tuple
1List和Tuple1.1List(有序可重复可修改)list是一种有序的集合,可以随时添加和删除其中的元素。>>>list=[1,2,3]>>>list[1,2,3]>>>list=[‘1‘,‘2‘,‘3‘]>>>list[‘1‘,‘2‘,‘3‘]>>>len(list)--显示list中的元素个数3>>>list..
分类:编程语言   时间:2016-07-03 23:32:08    阅读次数:213
使用KNN对iris数据集进行分类——python
filename='g:\data\iris.csv' lines=fr.readlines()Mat=zeros((len(lines),4))irisLabels=[]index=0for line in lines: line=line.strip() if len(line)>0: list ...
分类:编程语言   时间:2016-07-03 23:23:56    阅读次数:1065
升级php7
1:修改apt软件源打开文件 /etc/apt/sources.list添加如下行deb http://packages.dotdeb.org jessie all 2:Fetch the repository key and install it. wget https://www.dotdeb. ...
分类:Web程序   时间:2016-07-03 23:22:52    阅读次数:165
Graph Valid Tree
Given n nodes labeled from 0 to n - 1 and a list of undirected edges (each edge is a pair of nodes), write a function to check whether these edges mak ...
分类:其他好文   时间:2016-07-03 23:17:41    阅读次数:166
C++和.net的集合类对应
Here's what I've found (ignoring the old non-generic collections): Array- C array, though the .NET Arraycanhave a non-zero starting index. List-std::v... ...
分类:编程语言   时间:2016-07-03 23:08:04    阅读次数:222
Redis学习笔记(二)-key相关命令
Redis支持的各种数据类型包括string,list ,set ,sorted set 和hash . Redis本质上一个key-value db,所以我们首先来看看他的key。首先key也是字符串类型,但是key中不能包括边界字符。由于key不是binary safe的字符串,所以像"my k ...
分类:其他好文   时间:2016-07-03 21:47:02    阅读次数:231
sorted() 详解
简单记一下python中List的sort方法(或者sorted内建函数)的用法。List的元素可以是各种东西,字符串,字典,自己定义的类等。sorted函数用法如下: sorted(data, cmp=None, key=None, reverse=False) 其中,data是待排序数据,可以使 ...
分类:其他好文   时间:2016-07-03 21:29:13    阅读次数:322
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!