序列是Python中最基本的数据结构。序列中的每个元素都分配一个数字 - 它的位置,或索引,第一个索引是0,第二个索引是1,依此类推。
    Python有6个序列的内置类型,但最常见的是列表和元组。
    序列都可以进行的操作包括索引,切片,加,乘,检查成员。
    Python有内置确定序列的长度以及确定最大和最小的元素的方法。
    列表是最常用的Python数据类型,它可以作为一个方括号内的逗号分隔值出现。
    列表的数据项不需要具有相同的类型。
    创建一个列表,只要把逗号分隔的不同的数据项使用方括号括起来即可。
    实例:

    1. list1 = ['physics', 'chemistry', 1997, 2000]
    2. list2 = [1, 2, 3, 4, 5 ]
    3. list3 = ["a", "b", "c", "d"]

    与字符串的索引一样,列表索引从0开始。列表可以进行截取、组合等。
    访问列表中的值
    使用下标索引来访问列表中的值,可以使用方括号的形式截取字符。
    实例:

    1. #!/usr/bin/python
    2. list1 = ['physics', 'chemistry', 1997, 2000]
    3. list2 = [1, 2, 3, 4, 5, 6, 7 ]
    4. print "list1[0]: ", list1[0]
    5. print "list2[1:5]: ", list2[1:5]

    运行案例
    更新列表
    可以对列表的数据项进行修改或更新,也可以使用append()方法来添加列表项。
    实例:

    1. #!/usr/bin/python
    2. # -*- coding: UTF-8 -*-
    3. list = [] ## 空列表
    4. list.append('Google') ## 使用 append() 添加元素
    5. list.append('coding')
    6. print list

    运行案例
    删除列表元素
    可以使用del语句来删除列表的元素。
    实例:

    1. #!/usr/bin/python
    2. list1 = ['physics', 'chemistry', 1997, 2000]
    3. print list1
    4. del list1[2]
    5. print "After deleting value at index 2 : "
    6. print list1

    运行案例
    Python列表脚本操作符
    列表对+和操作符与字符串相似。+号用于组合列表,号用于重复列表。

    表达式 结果 说明
    len([1, 2, 3]) 3 长度
    [1, 2, 3] + [4, 5, 6] [1, 2, 3, 4, 5, 6] 组合
    [‘Hi!’] * 4 [‘Hi!’, ‘Hi!’, ‘Hi!’, ‘Hi!’] 重复
    3 in [1, 2, 3] True 元素是否存在于列表中
    for x in [1, 2, 3]: print x, 1 2 3 迭代

    Python列表截取
    实例:

    1. >>>L = ['course', 'class', 'coding']
    2. >>> L[2]
    3. 'coding'
    4. >>> L[-2]
    5. 'class'
    6. >>> L[1:]
    7. ['class', 'coding']
    8. >>>

    说明:L[2]—读取列表中第三个元素,L[-2]—读取列表中倒是第二个元素。
    Python列表函数

    函数 说明
    cmp(list1, list2) 比较两个列表的元素
    len(list) 列表元素个数
    max(list) 返回列表元素最大值
    min(list) 返回列表元素最小值
    list(seq) 将元组转换为列表

    Python列表方法

    方法 说明
    list.append(obj) 在列表末尾添加新的对象
    list.count(obj) 统计某个元素在列表中出现的次数
    list.extend(seq) 在列表末尾一次性追加另一个序列中的多个值(用新列表扩展原来的列表)
    list.index(obj) 从列表中找出某个值第一个匹配项的索引位置
    list.insert(index, obj) 将对象插入列表
    list.pop(obj=list[-1]) 移除列表中的一个元素(默认最后一个元素),并且返回该元素的值
    list.remove(obj) 移除列表中某个值的第一个匹配项
    list.reverse() 反向列表中元素
    list.sort([func]) 对原列表进行排序