当输入句子中的单词时,程序识别单词出现的所有位置

时间:2015-09-21 19:36:15

标签: python

我需要让我的程序识别字符串中的单词并为其指定索引,例如你好,世界,世界,如果我输入世界会给我"世界第一的位置世界第二的位置。我已经将字符串转换为列表并使用了枚举,我可以索引整个字符串等,它只是不能让程序给出同一文本中相同单词的索引。

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)))

正如你所看到的那样,所有这一切都是一整天都在尝试!!

0 个答案:

没有答案