你如何从列表中检索单词的位置?
这个问题在这里已经有了答案:
使用列表的index()
函数:
Sentence = ["she" , "sells" , "sea" , "shells" ,"on" , "the", "sea" , "shore"]
print Sentence.index("sea")
列表的索引是基于零的,因此结果是2
。
这个问题在这里已经有了答案:
使用列表的index()
函数:
Sentence = ["she" , "sells" , "sea" , "shells" ,"on" , "the", "sea" , "shore"]
print Sentence.index("sea")
列表的索引是基于零的,因此结果是2
。