我需要让我的程序识别字符串中的单词并为其指定索引,例如你好,世界,世界,如果我输入世界会给我"世界第一的位置世界第二的位置。我已经将字符串转换为列表并使用了枚举,我可以索引整个字符串等,它只是不能让程序给出同一文本中相同单词的索引。
def quote():
quote = " sample quote sample quote sample quote"
quote1 = quote.split()
print(str(quote1) + "\n\n");
word = input("what word would you like to index? ")
print(quote1.index(word ));
print("The word you have chosen is placed at index " +
str(quote1.index(word)))
正如你所看到的那样,所有这一切都是一整天都在尝试!!