Wie finde ich die Position von MEHR ALS EINEM Teilstring in einem String (Python 3.4.3-Shell)?

Der folgende Code zeigt die Position von "word" an, wenn es einmal in der Zeichenfolge vorkommt. Wie kann ich meinen Code so ändern, dass, wenn das "Wort" mehr als einmal in der Zeichenfolge vorkommt, alle Positionen gedruckt werden?

string = input("Please input a sentence: ")
word = input("Please input a word: ")
string.lower()
word.lower()
list1 = string.split(' ')
position = list1.index(word)
location = (position+1)
print("You're word, {0}, is in position {1}".format (word, location))

Antworten auf die Frage(6)

Ihre Antwort auf die Frage