查找没有索引的对象的位置

时间:2015-10-13 13:45:40

标签: python list position

我想知道是否有一种方法可以在python中查找列表中项目的位置而不使用索引?我已经尝试过计数和长度函数,但我不确定我的缩进是否正确,或者我是否写错了。

1 个答案:

答案 0 :(得分:0)

如果你想要列表中每个元素的位置,我建议你看看: How to return the position of numbers, which are same as input numbers, in a list in python?

否则,如果您只想要第一个元素,为什么不使用计数器遍历数组的长度,并在找到您要查找的内容时返回计数器。