码迷,mamicode.com
首页 >  
搜索关键字:tuple    ( 3184个结果
Python数据结构:列表、元组和字典
在Python中有三种内建的数据结构——列表list、元组tuple和字典dict列表中的项目包括在方括号中,项目之间用逗号分割元组和列表十分类似,只不过元组和字符串一样是不可变的 即你不能修改元组。元组通过圆括号中用逗号分割的项目定义。元组最通常的用法是用在打印语句中age = 22name = ...
分类:编程语言   时间:2014-08-12 16:31:14    阅读次数:211
使用类模板时的一点困惑
1 #include 2 #include 3 4 using namespace std; 5 6 ///通过嵌套实现元则 7 template 8 class my_tuple 9 {10 public:11 T value;12 N next;13 my_tupl...
分类:其他好文   时间:2014-08-11 17:23:52    阅读次数:188
storm starter学习(二) - 流聚合
SingleJoinExample示例说明了storm中流聚合的应用,将具有相同tuple属性的数据流整合成一个新的数据流。来看一下Topology。先定义两个数据源genderSpout和ageSpout,Fields分别为("id", "gender")、("id"...
分类:其他好文   时间:2014-08-11 12:16:12    阅读次数:253
The Flat Dictionary
The Flat Dictionary原来的代码没处理dict为空的情况 1 def flatten(dictionary): 2 #[] is a list 3 #() is a tuple 4 stack = [((), dictionary)] 5 6 res...
分类:其他好文   时间:2014-08-05 11:05:59    阅读次数:204
Min and Max
Min and Max需要处理不同数据类型; 另外*args, 表示的是位置参数, *kwargs表示的是key参数, args的类型为tuple类型, 参数为min(3, 2)时, args为(3, 2), 参数为min([3, 2])时, args为([3, 2], );列表解析为[i for ...
分类:其他好文   时间:2014-08-05 10:59:49    阅读次数:150
Absolute sort
Absolute sortLet's try some sorting. Here is an array with the specific rules.The array (a tuple) has various numbers. You should sort it, but sort it...
分类:其他好文   时间:2014-08-05 10:50:49    阅读次数:204
Django——正则表达式的举例与基本语法
如果想在URLconf中加入URL和view,只需增加映射URL模式和view功能的Python tuple即可. 这里演示如何添加view中hello功能.from django.conf.urls.defaults import *from mysite.views import hellour...
分类:其他好文   时间:2014-08-04 21:13:27    阅读次数:212
python基础语法(二)
------------------------------------------接Python 基础语法(一)-------------------------------------------- 2. 元组 tuple和list十分相似,但是tuple是不可变的,即不能修改tuple...
分类:编程语言   时间:2014-08-04 17:06:47    阅读次数:332
Scala琐碎知识点
tuple scala中的tuple数据结构,是用来包含不同数据类型的容器,定义如下: 访问tuple中的元素,需要使用._n的语法,索引从1开始: scala中的tuple的长度最多为22,超过22报错: 上述定义scala中的tuple的方式是下面这种方式的缩写: scala中的cons(:: ...
分类:其他好文   时间:2014-08-02 20:42:33    阅读次数:202
python类型
学了这么久,才发现原来还有好多基础知识根本不会...标准类型:整型 int 布尔型 bool 长整型 long 浮点型 float 复数型 complex 字符串 str 列表 list元组 tuple 字典 dict 其他内建类型:类型对象的类型 typeNone NoneType文件 file函...
分类:编程语言   时间:2014-07-31 16:34:46    阅读次数:274
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!