0.
(1)py2中xrange()返回的是列表对象list;py3中rang()返回的是区间对象range
(2)for items in <dict> items是字典中的key
1.列表list和元组tuple(都属于序列)
(1)列表和元组类似,可通过索引访问元素
(2)元组的内容不可修改;列表的内容可以修改;
(3)列表使用[]创建,元组使用()创建;元素均用逗号隔开;
(4)支持使用索引获取一段;[start:end:step]
(5)支持使用+进行拼接;用*创建多个;
(6)支持in操作符
(7)max(),min(),len(); 最大值,最小值,元素个数(最大值,最小值要求元素类型相同)
2.序列的封包与解包
# 用range初始化元组
tu = tuple(rang(1,10,2))
# 封包(封成元组)
>>> a = 10 ,20, 30
>>> type(a)
<class 'tuple'>
# 解包
>>> c, d, e = a
>>> c
10
>>> d
20
>>> e
30
注:可通过*截取部分元素
>>> a= tuple(range(1,10,2))
>>> a
(1, 3, 5, 7, 9)
>>> type(a)
<class 'tuple'>
>>> first, *mid,last = a
>>> first
1
# 注意mid是列表
>>> mid
[3, 5, 7]
>>> last
9
3.列表的操作
(1)可以使用list()函数将元组tuple,区间range等对象转化为列表list
>>> li = list(range(1,20,3))
>>> li
[1, 4, 7, 10, 13, 16, 19]
>>> tu = 1, 3, 5
>>> li2 = list(tu[1:3])
>>> li2
[3, 5]
(2)常用操作
1)append();增加元素(可以是list,tuple,或者直接给定元素);但是,该种方法会将追加的内容作为一个整体
>>> a = range(1,10,4)
>>> type(a)
<class 'range'>
>>> li2.append(a)
>>> li2
[3, 5, range(1, 10, 4)]
>>> li2.append(list(a))
>>> li2
[3, 5, range(1, 10, 4), [1, 5, 9]]
>>> li2.append(tu)
>>> li2
[3, 5, range(1, 10, 4), [1, 5, 9], (1, 3, 5)]
2)extend();也是增加列表元素,但是追加内容不会作为一个整体
>>> l = list(range(1, 10, 3))
>>> l.extend(range(10,20,3))
>>> l
[1, 4, 7, 10, 13, 16, 19]
>>> l.extend(20,30,3)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: extend() takes exactly one argument (3 given)
# 必须加(),不然会报上面的问题
>>> l.extend((20,30,3))
>>> l
[1, 4, 7, 10, 13, 16, 19, 20, 30, 3]
3)删除列表中的元素,或者删除列表del
还有remove()删除第一次出现的指定元素和clear()清空列表
>>> del l[1:3]
>>> l
[1, 10, 13, 16, 19, 20, 30, 3]
>>> del l
>>> l
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'l' is not defined
# remove()
>>> l
[1, 4, 7, 20, 30, 3, 1, 2, 3]
>>> l.remove(1)
>>> l
[4, 7, 20, 30, 3, 1, 2, 3]
# clear()
>>> l.clear()
>>> l
[]
4)修改列表中元素值(直接通过下标访问即可)
>>> l = list(range(1, 10, 3))
>>> l.extend((20,30,3))
>>> l
[1, 4, 7, 20, 30, 3]
# 插入
>>> l[2:2] = ('aaa')
>>> l
[1, 4, 'a', 'a', 'a', 7, 20, 30, 3]
# 删除
>>> l[2:5] = []
>>> l
[1, 4, 7, 20, 30, 3]
# 修改
>>> l[2:6:1] = ['a', 'b']
>>> l
[1, 4, 'a', 'b']
5)其他常用函数
count()指定元素(元素可以是元组等对象)出现的次数
index()指定元素的下标
pop()弹出末尾元素(栈)
reverse()方向保存
sort(key=len,reverse=False)排序(要求元素类型相同)
3.字典dict
(1)字典的创建(通过dict()函数以及fromkeys()函数)
>>> d = {'abc':'ABC', (2,3):'shuzi'}
>>> d
{'abc': 'ABC', (2, 3): 'shuzi'}
>>> d[(2,3)]
'shuzi'
>>> d['abc']
'ABC'
>>> d[(2,3)]
'shuzi'
>>> d2 = [('f',1), ('s',2)]
>>> d2
[('f', 1), ('s', 2)]
>>> d2 = [['f',1], ['s',2]]
>>> d2
[['f', 1], ['s', 2]]
>>> type(d2)
<class 'list'>
# 使用列表创建字典
>>> d3 = dict(d2)
>>> d3
{'f': 1, 's': 2}
^
# 使用关键字创建字典
>>> d3 = dict(f3=3,f4=4)
>>> d3
{'f3': 3, 'f4': 4}
# 使用fromkeys创建
>>> d5 = dict.fromkeys((1,2,3), 'good')
>>> d5
{1: 'good', 2: 'good', 3: 'good'}
(2)字典的操作
1)可通过key直接访问(如果key不存在会返回KeyError)
2)支持in 和 not in 操作符
3)允许对不存在的key赋value
4)使用del 或者pop() 删除key-value对(指明key即可,如果key不存在会返回KeyError)
>>> d3
{'f3': 3, 'f4': 4}
>>> d3['f5']
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
KeyError: 'f5'
>>> 'f5' in d3
False
>>> d3['f5']=5
>>> d3
{'f3': 3, 'f4': 4, 'f5': 5}
(3)字典的常用方法
1)clear()
2)get();获取key对应的Value,若key不存在返回None
3)update();用指定的字典的key-value更新现有字典
>>> d3
{'f3': 31, 'f6': 6}
>>> d3.update({'f7':31})
>>> print(d3)
{'f3': 31, 'f6': 6, 'f7': 31}
>>>
>>> d3.update({'f6':31, 'f8':6})
>>> d3
{'f3': 31, 'f6': 31, 'f7': 31, 'f8': 6}
4)items(),keys(),values()获取字典所有的key-value对,keys,values
注:得到的是不能修改的,但是可以转为list
5)pop_item()无参数
6)设置默认值setdefault();若key存在,则不会影响其value值;如不存在,直接加入到字典中