Итак, я выучил второй курс python по edx, и вот код, который я написал, но пока не совсем понимаю эту часть l oop. Может ли кто-нибудь объяснить мне, что мне 6 лет, что там происходит?
Код:
# [ ] Print each word in the quote on a new line
quote = "they stumble who run fast"
start = 0
space_index = quote.find(" ")
while space_index != -1: #the code in while needs to be explained to me
print(quote[start:space_index])
start = space_index +1
space_index = quote.find(" ", space_index +1)