遍历dict由于dict也是一个集合,所以,遍历dict和遍历list类似,都可以通过 for 循环实现。直接使用for循环可以遍历 dict 的 key:>>> d = { 'Adam': 95, 'Lisa': 85, 'Bart': 59 }>>> for key in d:... p...
分类:
编程语言 时间:
2014-10-23 10:38:38
阅读次数:
143
在用emacs查阅文档或上网的时候时常会遇到不认识的英文单词,若老是要切换到xdict查寻单词再切回emacs则显得太过繁琐。所幸,使用dict/dictd工具和dictionary.el可以实现直接在emacs中查询英文单词的释义。1.安装dict/dictdubuntu下可以直接用apt-get安装sudoapt-getinstalldic..
分类:
系统相关 时间:
2014-10-23 06:56:15
阅读次数:
247
用给自己记录用defmonitor_work_1(content):dict_1={‘service‘:‘rdc_monitor‘,‘checkpoint‘:‘rdc_monitor_log‘,‘title‘:content,‘content‘:content,‘cluster‘:‘public‘,‘grade‘:‘2‘}params=urllib.urlencode(dict_1)urllib.urlopen(‘http://alert.sae.sina.com.cn/new/‘,params)
分类:
Web程序 时间:
2014-10-21 19:49:41
阅读次数:
168
Word Break IIGiven a string s and a dictionary of words dict, add spaces in s toconstruct a sentence where each word is a valid dictionaryword.Return ...
分类:
其他好文 时间:
2014-10-20 17:10:28
阅读次数:
466
1、用双重循环逐个遍历(超时)2、用list B的append和remove函数(超时)3、用dict B(AC) 1 class Solution: 2 # @param A, a list of integer 3 # @return an integer 4 def s...
分类:
编程语言 时间:
2014-10-19 01:18:21
阅读次数:
246
《python基础教程(第二版)》学习笔记 字典(第4章)创建字典:d={'key1':'value1','key2':'value2'}lst=[('key1','value1'),('key2','value2')]; d=dict(lst)d=dict(key1='value1', key2=...
分类:
编程语言 时间:
2014-10-18 19:36:45
阅读次数:
172
我封装好了2个方法,用来字典和data相互转换的,直接复制方法拿来用就可以了,注意2点:
1.我是用的mrc,用arc的同学把autorelease去掉即可。
2.第二个我是路径文件转的字典,想data转的话自己把方法改一下就行了。
//字典转data
+(NSData *)returnDataWithDictionary:(NSDictionary *)dict
{
...
分类:
其他好文 时间:
2014-10-18 12:40:20
阅读次数:
149
Dict创建somedict = {}somedict = {"key": value}a = dict(one=1, two=2, three=3)c = dict(zip(['one', 'two', 'three'], [1, 2, 3]))d = dict([('two', 2), ('on...
分类:
编程语言 时间:
2014-10-17 23:15:55
阅读次数:
195
这里是一个可能有用的通过字典解析实现的小技巧: 交换字典的键和值。1 >>> a_dict = {'a': 1, 'b': 2, 'c': 3}2 >>> {value:key for key, value in a_dict.items()}3 {1: 'a', 2: 'b', 3: 'c'}
分类:
编程语言 时间:
2014-10-17 15:15:23
阅读次数:
1052
1.CURL是利用URL语法在命令行方式下工作的开源文件传输工具。
2.它被广泛应用在Unix、多种Linux发行版中,并且有DOS和Win32、Win64下的移植版本。
3.它支持很多协议:FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT, FILE 以及 LDAP。
4.CURL是瑞典CURLl组织开发的,您可以访问: ht...
分类:
Web程序 时间:
2014-10-17 12:05:14
阅读次数:
297