Python的内置函数enumerate()。在学习过程中遇到了一点小问题。记录一下。
`enumerate()` 是 Python 中常用的内置函数之一,它可以用来同时遍历序列的索引和对应的值。具体来说,`enumerate()` 接受一个可迭代对象作为参数,返回一个包含索引和值的元组的迭代器。
基本语法如下:
enumerate(iterable, start=0)
iterable:需要遍历的可迭代对象,如列表、元组、字符串等。
start:可选参数,指定索引的起始值,默认为 0,即从 0 开始。
返回的迭代器会生成类似 `(index, value)` 的元组,其中 `index` 是从 `start` 开始递增的整数,表示元素在可迭代对象中的索引,而 `value` 则是对应的元素值。
下面是一个简单的示例,演示了如何使用 `enumerate()`:
fruits = ['apple', 'banana', 'cherry']
for index, fruit in enumerate(fruits):
print(f"索引 {index}: {fruit}")
这将输出:
索引 0: apple
索引 1: banana
索引 2: cherry
在这个示例中,`enumerate()` 函数让我们可以在 `for` 循环中同时获得列表中的索引和值,方便处理带有索引信息的数据。
在一个小项目中错误的吧index和fruit位置搞错误了,导致程序不能正常运行。
具体如下
def copyModifiedRowToTableWidget(self):
"""根据search_list修改materia_list内容"""
# 遍历 found_rows 列表中的每一个行号
for idx, row in enumerate(self.found_rows):
# 复制 tableWidget_2 中该行的内容到 tableWidget 中对应行的单元格
for col in range(self.ui.tableWidget_2.columnCount()):
source_item = self.ui.tableWidget_2.item(row, col)
if source_item:
newItem = QTableWidgetItem(source_item.text())
self.ui.tableWidget.setItem(idx, col, newItem)
在源代码(错误的)中该函数的功能是根据search_list修改materia_list内容。但此时是idx在row的去前面,就导致在修改列表时每次只能修改第一行的元素,不能修改其他行
此时点修改不能正确修改。
当修改代码使row,在idx的前面。可以正常运行
还有一种办法是修改源代码如下
下面的代码直观的说明了我的错误
# 测试代码
fruits = ['apple', 'banana', 'cherry']
print("错误的")
for index, fruit in enumerate(fruits):
print(f"索引 {fruit}: {index}")
fruits = ['apple', 'banana', 'cherry']
print("正确的")
for index, fruit in enumerate(fruits):
print(f"索引 {index}: {fruit}")
运行结果: