Python 列表


Python囊括了大量的复合数据类型,用于组织其它数值。最有用的是列表,即写在方括号之间、用逗号分隔开的数值列表。列表内的项目不必全是相同的类型。

  1. >>> a = ['spam', 'eggs', 100, 1234]
  2. >>> a
  3. ['spam', 'eggs', 100, 1234]
  4. >>> squares = [1, 4, 9, 16, 25]
  5. >>> squares
  6. [1, 4, 9, 16, 25]

像字符串一样,列表可以被索引和切片:

  1. <pre>
  2. >>> squares[0] # 索引返回的指定项
  3. 1
  4. >>> squares[-1]
  5. 25
  6. >>> squares[-3:] # 切割列表并返回新的列表
  7. [9, 16, 25]

所有的分切操作返回一个包含有所需元素的新列表。如下例中,分切将返回列表 squares 的一个拷贝:

  1. >>> squares[:]
  2. [1, 4, 9, 16, 25]

列表还支持拼接操作:

  1. >>> squares + [36, 49, 64, 81, 100]
  2. [1, 4, 9, 16, 25, 36, 49, 64, 81, 100]

Python 字符串是固定的,列表可以改变其中的元素:

  1. >>> cubes = [1, 8, 27, 65, 125]
  2. >>> 4 ** 3
  3. 64
  4. >>> cubes[3] = 64 # 修改列表值
  5. >>> cubes
  6. [1, 8, 27, 64, 125]

您也可以通过使用append()方法在列表的末尾添加新项:

  1.  
  2. >>> cubes.append(216) # cube列表中添加新值
  3. >>> cubes.append(7 ** 3) # cube列表中添加第七个值
  4. >>> cubes
  5. [1, 8, 27, 64, 125, 216, 343]

你也可以修改指定区间的列表值:

  1. >>> letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g']
  2. >>> letters
  3. ['a', 'b', 'c', 'd', 'e', 'f', 'g']
  4. >>> # 替换一些值
  5. >>> letters[2:5] = ['C', 'D', 'E']
  6. >>> letters
  7. ['a', 'b', 'C', 'D', 'E', 'f', 'g']
  8. >>> # 移除值
  9. >>> letters[2:5] = []
  10. >>> letters
  11. ['a', 'b', 'f', 'g']
  12. >>> # 清楚列表
  13. >>> letters[:] = []
  14. >>> letters
  15. []

内置函数 len() 用于统计列表:

  1. >>> letters = ['a', 'b', 'c', 'd']
  2. >>> len(letters)
  3. 4

也可以使用嵌套列表(在列表里创建其它列表),例如:

  1. >>> a = ['a', 'b', 'c']
  2. >>> n = [1, 2, 3]
  3. >>> x = [a, n]
  4. >>> x
  5. [['a', 'b', 'c'], [1, 2, 3]]
  6. >>> x[0]
  7. ['a', 'b', 'c']
  8. >>> x[0][1]
  9. 'b'