Finding the index of an item in a list

后端 未结 30 3380
你的背包
你的背包 2020-11-21 05:28

Given a list [\"foo\", \"bar\", \"baz\"] and an item in the list \"bar\", how do I get its index (1) in Python?

30条回答
  •  盖世英雄少女心
    2020-11-21 05:57

    A problem will arise if the element is not in the list. This function handles the issue:

    # if element is found it returns index of element else returns None
    
    def find_element_in_list(element, list_element):
        try:
            index_element = list_element.index(element)
            return index_element
        except ValueError:
            return None
    

提交回复
热议问题