你创建的大多数列表将是动态的,这意味着列表创建后,将随着程序的运行增减元素。
1.修改列表元素
修改列表元素的语法与访问列表元素的语法类似。要修改列表元素,可指定列表名和要修改的元素的索引,再指定该元素的新值。
例如,假设有一个摩托车列表,其中的第一个元素为’Honda’,如何修改它的值呢?
motorcycles = ['honda','yamaha','suzuki']
print(motorcycles)
motorcycles[0] = 'ducati'
print(motorcycles)
输出结果为:
['honda', 'yamaha', 'suzuki']
['ducati', 'yamaha', 'suzuki']
2.在列表中添加元素
Python提供了多种在既有列表中添加新数据的方式。
2.1.在列表末尾添加元素
在列表中添加新元素时,最简单的方式是将元素附加到列表末尾。给列表附加元素时,它将添加到列表末尾。继续使用前一个示例中的列表,在其末尾添加新元素’ducati’:
motorcycles = ['honda','yamaha','suzuki']
print(motorcycles)
#append() 方法向列表末尾追加元素
motorcycles.append('ducati')
print(motorcycles)
输出结果如下:
['honda', 'yamaha', 'suzuki']
['honda', 'yamaha', 'suzuki', 'ducati']
方法append()让动态地创建列表易如反掌,例如,你可以先创建一个空列表,再使用一系列的append()语句添加元素。下面来创建一个空列表,再在其中添加新素’honda’、’yamaha’和’suzuki’:
motorcycles = []
motorcycles.append('honda')
motorcycles.append('yamaha')
motorcycles.append('suzuki')
print(motorcycles)
['honda', 'yamaha', 'suzuki']
这种创建列表的方式极其常见,因为经常要等程序运行后,你才知道用户要在程序中存储那些数据。为控制用户,可以首先创建一个空列表,用于储存用户将要输入的值,然后将用户提供的每个新值附加到列表中。
2.2.在列表中插入元素
使用方法insert()可在列表的任何位置添加新元素。为此,你需要指定新元素的索引和值。
motorcycles = ['honda','yamaha','suzuki']
motorcycles.insert(0,'dukati')
print(motorcycles)
['dukati', 'honda', 'yamaha', 'suzuki']
2.3.从列表中删除元素
1.使用del语句删除元素
del和pop的区别:
如果知道要删除的元素在列表中的位置,可使用del语句。
motorcycles = ['honda','yamaha','suzuki']
print(motorcycles)
del motorcycles[0]
print(motorcycles)
输出结果如下:
['honda', 'yamaha', 'suzuki']
['yamaha', 'suzuki']
使用del可删除任何位置处的列表元素,条件是知道其索引。
2.使用方法pop()删除元素
有时候,你要将元素从列表中删除,并接着使用它的值。
方法pop()可删除列表末尾的元素,并让你能够接着使用它。术语弹出(pop)源自这样的类比:列表就像个栈,而删除列表末尾的元素相当于弹出栈元素。
下面从列表motorcycles中弹出一款摩托车:
motorcycles = ['honda','yamaha','suzuki']
print(motorcycles)
popped_motorcycle = motorcycles.pop()
print(motorcycles)
print(popped_motorcycle)
输出结果如下:
['honda', 'yamaha', 'suzuki']
['honda', 'yamaha']
suzuki
输出标明,列表末尾的值’suzuki’已删除,它现在储存在变量popped_motorcycle中
方法pop()是怎么起作用的呢?假设列表中的摩托车是按购买时间存储的,就可使用方法pop()打印一条消息,指出最后购买的是哪款摩托车:
motorcycles = ['honda','yamaha','suzuki']
last_owned = motorcycles.pop()
print("The last motorcycle I owned was a " + last_owned.title() + ".")
输出结果如下:
The last motorcycle I owned was a Suzuki.
3.弹出列表中任何位置处的元素
实际上,你可以使用pop()来删除列表中任何位置的元素,只需在括号中指定要删除的元素的索引即可。
motorcycles = ['honda','yamaha','suzuki']
first_owned = motorcycles.pop(0)
print('The first motorcycle I owned was a ' + first_owned.title()+'.')
输出结果如下:
The first motorcycle I owned was a Honda.
别忘了,每当你使用pop()时,被弹出的元素就不再在列表中了。
如果你不确定该使用del语句还是pop()方法时,下面是一个简单的判断标准:如果你要从列表中删除一个元素,且不再以任何方式使用它,就使用del语句;如果你要在删除元素后还能继续使用它,就使用方法pop()。
4.根据值删除元素
有时候,你不知道要从列表中删除的值所处的位置。如果你只知道要删除的元素的值,可使用remove()。
假如,假设我们要从列表motorcycles中删除值’dukati’。
motorcycles = ['honda','yamaha','suzuki','dukati']
print(motorcycles)
motorcycles.remove('dukati')
print(motorcycles)
输出结果如下:
['honda', 'yamaha', 'suzuki', 'dukati']
['honda', 'yamaha', 'suzuki']
使用remove()从列表中删除元素时,也可接着使用它的值。下面删除值’dukati’,并打印一条消息,指出要将其从列表中删除的原因。
motorcycles = ['honda','yamaha','suzuki','ducati']
print(motorcycles)
too_expensive = 'ducati'
motorcycles.remove(too_expensive)
print(motorcycles)
print("\nA " + too_expensive.title() + "is too expensive for me.")
#"\n"就是一个换行符
输出结果如下:
A Dukatiis too expensive for me.