用python创建一个列表 fruits = ["apple", "banana", "cherry", "date"],替换列表中的 "banana" 和 "cherry" 为 "blueberry" 和 "coconut"。打印修改后的列表。
时间: 2024-06-23 16:00:41 浏览: 242
在Python中分别打印列表中的每一个元素方法
要替换列表中的元素,你可以使用 Python 的 `list` 的 `index()` 方法找到元素的位置,然后用新的值替换。以下是代码示例:
```python
# 创建原始列表
fruits = ["apple", "banana", "cherry", "date"]
# 找到并替换 "banana"
index_banana = fruits.index("banana")
fruits[index_banana] = "blueberry"
# 找到并替换 "cherry"
index_cherry = fruits.index("cherry")
fruits[index_cherry] = "coconut"
# 打印修改后的列表
print("修改后的列表: ", fruits)
```
执行上述代码后,你会得到修改后的列表,其中 "banana" 和 "cherry" 都被替换为了 "blueberry" 和 "coconut"。
阅读全文