I am working with a word which is input by the user. Example: "where". I need to find the first vowel and start the word from it, and place the beginning of the word to the end.
First I want to understand indexes of each letter and I did it with enumerate(): Now I want to get the index of a vowel and make the word sliced.
The question is how to pass to python the information about the indices I got from enumerate and how to make it define the index of the vowel?
I found lots of tutorials on slicing, but still did not get how to unite these two functions. Please help me (maybe you know a tutorial which can help or just give ideas). I am a beginner, so keep it simple, please. I am stuck, I don't understand how to iterate through the word/words and at the same time get its index.