class Solution: # @return a string def longestCommonPrefix(self, strs): num_items=len(strs) if num_itemslen(i): pre...
分类:
其他好文 时间:
2014-10-09 15:05:24
阅读次数:
179
爬虫最基本的部分是要将网页下载,而最重要的部分是过滤 -- 获取我们需要的信息。 而scrapy正好提供了这个功能: 首先我们要定义items: Itemsare containers that will be loaded with the scraped data; they ...
分类:
其他好文 时间:
2014-10-05 01:04:07
阅读次数:
341
在~下有一文本文件matrix.dat内容如下: 99 102 3
12 43 213.0
12 12 2
23 21 211 方式1: > A <- matrix(scan("~/matrix.dat", n = 3*4), 3, 4, byrow = TRUE)
Read 12 items
> A
[,1] [,2] [,3] [,4]
[1...
分类:
其他好文 时间:
2014-10-05 00:47:17
阅读次数:
307
Data Types in the KernelUse of Standard C Types/* * datasize.c -- print the size of common data items * This runs with any Linux kernel (not any Unix,...
分类:
其他好文 时间:
2014-10-04 21:17:27
阅读次数:
248
思路是把字典转为列表后再排序d={'z':1,'y':2,'x':3} # 字典s=d.items() # [('y', 2), ('x', 3), ('z', 1)] 列表s.sort() # [('x', 3), ('y', 2), ('z', 1)] 排序列表# 或者连起来写(sort是...
分类:
编程语言 时间:
2014-09-30 14:54:59
阅读次数:
208
具体同列表解释,也是使用if来进行过滤例子,生成一个新的字典,并且是原来字典的键值交换。1 mydict={'Tom':18,'Mary':20}2 print({value:key for key,value in mydict.items()})结果为:{18:'Tom',20:'Mary'}
分类:
编程语言 时间:
2014-09-29 21:21:21
阅读次数:
219
//后台 public ActionResult OrderAdd() { var items = new List() { (new SelectListItem(){Text = "男", Val...
分类:
Web程序 时间:
2014-09-28 22:22:15
阅读次数:
286
首先介绍一下什么是ol元素。这里直接引用MDN里面的定义:The HTML Element (or HTML Ordered List Element) represents an ordered list of items.也就是说这个元素的包含的li元素是带有数字序号的。为了更好阐述下面介...
分类:
其他好文 时间:
2014-09-26 22:47:08
阅读次数:
453
示例:$items=array('name'=>'sjm','age'=>'26','sex'=>'男','location'=>'北京');//当然用循环然后break的方式是可以的,但是比较麻烦,如下:foreach($itemsas$key=>$val)break;//那有什么更好的方法吗?下...
分类:
Web程序 时间:
2014-09-26 17:56:58
阅读次数:
233
1、获取对象Ext.getCmp('')根据Id获取对象2、获取选中的行: var aselections = Ext.getCmp('').getSelectionModel().selections.items; var record = aselections[0].data;record.I...
分类:
其他好文 时间:
2014-09-23 21:31:05
阅读次数:
225