1、创建赋值
aList = [123, 'abc', 4.56, ['inner', 'list']]
bList = [None, 'something to see here']
2、
切片 [] [:]
连接 +
重复操作符 *
3、序列类型函数
len()
max() min()
sorted() reversed()
enumerate() zip()
sum()
4、列表类型内建函数
list.append(obj)
list.count(obj) obj在列表中出现的次数
list.extend(seq)
list.index(obj, i=0, j=len(list))
list.insert(index, obj)
list.remove(obj)