你如何从列表中检索单词的位置?

这个问题在这里已经有了答案:

  • 在Python中找到一个包含它的列表的索引23个答案

  • 使用列表的index()函数:

    Sentence = ["she" , "sells" , "sea" , "shells" ,"on" , "the", "sea" , "shore"]
    print Sentence.index("sea")
    

    列表的索引是基于零的,因此结果是2

    链接地址: http://www.djcxy.com/p/28129.html

    上一篇: How do you retrieve a position of a word from a list?

    下一篇: if a is not an element in a list how to print?