如何在 python 中查找列表项的位置?

How to find the position of an item of a list in python?

我有两个列表。第一个列表有特定的长度,第二个列表的长度不稳定。我想分配两个列表中的项目。 我使用 colour_index = sel_pos%(len(colours))。 sel_pos 是项目在不稳定列表中的位置。 怎么每次都找位置?

使用 l.index(n) 在列表 l 中查找 n 的索引。

>>> x = [1,3,7]
>>> x.index(3)
1
colour_index = selections.index(txt)%(len(colours))

您可以使用 Index 函数获取元素和 return 它在列表中的索引:

indexNumber = MyList.Index(Element)