共计 225 个字符,预计需要花费 1 分钟才能阅读完成。
可以使用 enumerate()
函数来同时遍历列表的索引和元素。示例如下:
my_list = ["apple", "banana", "cherry"]
for index, value in enumerate(my_list):
print(f"Index: {index}, Value: {value}")
输出结果为:
Index: 0, Value: apple
Index: 1, Value: banana
Index: 2, Value: cherry
丸趣 TV 网 – 提供最优质的资源集合!
正文完