第04章:字典 当索引不好用时
Python唯一的内建的映射类型,无序,但都存储在一个特定的键中,键可以使字符,数字,或者是元祖.
------
字典使用:
表征游戏棋盘的状态,每个键都是由坐标值组成的元祖
存储文件修改的次数,文件名作为键
数字电话/地址薄
函数传递值def func(x,*args,**args):
如果要建公司员工与座机号的列表,如果要获得Alice的座机只能这么找
>>> names = ['Alice','Bob','Tom']
>>> numbers = ['1234','7...
分类:
编程语言 时间:
2014-09-17 23:26:13
阅读次数:
589
数独(DFS)。
很忧伤的一道题,先是剪枝的三个数组开成[9][9]导致 越界了WA。
然后就是每两组输出之间有空行,但是最后一组后面不能输出空行。PE好多次。
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#def...
分类:
其他好文 时间:
2014-09-17 12:12:19
阅读次数:
274
# -*- coding: utf-8 -*-import osimport subprocessimport signalclass MockLogger(object): '''模拟日志类。方便单元测试。''' def __init__(self): self.info...
分类:
编程语言 时间:
2014-09-17 10:07:01
阅读次数:
388
最近重新看了下salt-cp实现的过程,源代码逻辑相对简单,明白了salt-cp为什么只能针对文本文件、配置文件的拷贝。现在就来看看对应的代码吧源代码文件:salt/cli/cp.pyclassSaltCP(object):
def__init__(self,opts):
self.opts=opts
#读取文件内容,返回单元素字典:文件名--&g..
nimbus是storm集群的"控制器",是storm集群的重要组成部分。我们可以通用执行bin/storm nimbus >/dev/null 2>&1 &来启动nimbus。bin/storm是一个python脚本,在这个脚本中定义了一个nimbus函数:nimbus函数def nimbus(k...
分类:
其他好文 时间:
2014-09-15 22:33:00
阅读次数:
594
1 Fixture 概念
Fixture是测试中的概念:
Fixture 指的是测试中依赖的数据和条件等等Python的 unittest 库提供了对 fixture的一些支持每个TestCase 应该在setUp中, 自己负责资源的创建, 例如
class MyTestCase(unittest.TestCase):
def my_fixture_setup(self):...
分类:
编程语言 时间:
2014-09-15 17:55:59
阅读次数:
331
django版本1.4.5一般网站都是需要搜索栏目的,我的项目也需要,于是做了首先,写视图 1 #这个并不是我的项目,仅仅用它做个例子,解决相关问题 2 from django.db.models import Q 3 from models import Book 4 5 def search(....
分类:
其他好文 时间:
2014-09-15 17:26:09
阅读次数:
226
单例对象scala没有静态方法和静态字段。scala使用object实现,object定义了单个实例。1 object Accounts {2 private var lastNumber = 0;3 def newUniqueNumber() = { lastNumber += 1; la...
分类:
其他好文 时间:
2014-09-15 17:20:29
阅读次数:
192
简单类和无参方法:1 class Counter {2 private var value = 0; //必须初始化字段3 def increment() = value += 1 //方法默认是公有的4 def current = value5 }使用:1 val counter1 =...
分类:
其他好文 时间:
2014-09-15 17:16:29
阅读次数:
161
#-*-coding:cp936-*-importsysfromPyQt4importQtCore,QtGuiclassMyDialog(QtGui.QDialog):def__init__(self,parent=None):QtGui.QDialog.__init__(self,parent)s...
分类:
其他好文 时间:
2014-09-15 15:47:59
阅读次数:
199