Pushing the Greatness of Humtastesweet.blog.chinaunix.net
tastesweet
全部博文(245)
webrtc(1)
freeswitch(2)
Router(0)
RFC(0)
雅思(1)
GRE语文(0)
GRE数学(2)
GRE作文(0)
GRE单词(0)
Opencv(2)
Free Software(0)
计算机专业技术资(7)
webkit(0)
gnash(3)
radvision H.323 (1)
kernel移植与研究(2)
nice tip(21)
tools(7)
GUI(1)
command in linux(1)
net(7)
shell(3)
driver(16)
os_learn(27)
bootloader(9)
Shell命令解释器(5)
控制算法(5)
New Materials fo(1)
US robot(0)
Japan robot(1)
Artificial Intel(0)
MSP430(1)
ARM920T(3)
life in cumtb(0)
life in sunplus(4)
2013年(4)
2012年(8)
2011年(13)
2010年(68)
2009年(152)
yidou
smilylqq
yfj300
galel
叶绍琛
lixw_chi
shenxiao
skyily
小超hide
wangjial
cynthia
浪花小雨
Bsolar
iBoost
goodhaoy
a4088264
57132399
jiajia71
分类: Python/Ruby
2010-11-15 11:03:13
#DictionaryExam_Dictionary={ 1:2,"2":"nic","2323":3242} #数据类型可以混用#修改DictionaryExam_Dictionary[1]="32432" #修改对应的数据#删除元素del Exam_Dictionary[1]#清空DictionaryExam_Dictionary.clear()
#创建listExamp_list=[232,"new",'test']#索引对应数据Exmap_list[0] #232Exmap_list[1] # new#负的list索引Exmap_list[-1] #test#负数索引时从list的尾部开始救赎,任何一个非空的list的最后一个元素总是[-1],可以理解为list[-3]=list[ len--3]#list的分片slice#结构为list[index_1:index_2],返回一个新的list,数据位index_1开始,到不包含index_2索引的数据Examp_list[0:2]#232,"new",#向list添加元素Exmap_list.append("element"#添加到list的尾部Exmap_list.insert(index,"")#添加到指定索引,如果该位置有数据则此位置数据集体后移,然后添加,如果该序列不是list的有效数据,则添加该数据岛list的尾部。Exmap_list.extend( [23,234] )#新的list添加到原来的list,属于list操作#利用键值获得索引Exmap_list.index("ElementName")#返回值为对应值的索引#检测数据是否在list中 "c" in Exmap_list#存在返回True,否则返回Flase#删除Exmap_list.remove(数据值)Exmap_list.pop(索引)#同时支持list运算符
上一篇:Python文件拷贝-shutil
下一篇:PYthon 批量下载网页图片
登录 注册