Write a program that locates words in a sentence. The user first provides the sentence and then three words for which the location in the sentence should be displayed.
Below is an example execution of the assignment. The text in red represents user input and is logically not printed by your program.
De zin waarin je wenst te zoeken: Mijn naam is Frederik Gailly en ik woon in Gent. Geef de drie woorden waarvoor je de locatie wenst te bepalen gescheiden door een spatie: frederik gailly gent Frederik staat op plaats 13. Gailly staat op plaats 22. Gent staat op plaats 43.
s
, you can split the string using the s.split()
method.