I read the theory in Sololear about cycles, and I did not understand at all what was "for". Explain as clearly as possible pleas | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

I read the theory in Sololear about cycles, and I did not understand at all what was "for". Explain as clearly as possible pleas

е.🙏

23rd Aug 2020, 6:00 PM
иван
иван - avatar
2 Answers
+ 3
A for loop executes the code inside it's curly brackets until it reaches the stop condition. For example if you want to loop 10 times: for x in range(9): // do something
23rd Aug 2020, 6:14 PM
Gabriele
Gabriele - avatar
+ 1
Can add the sentences which you not understood..? Cycle means there is iterations.. Ex : for i in range(10) : #for loop statements . These executed 0 to 9(10-1), total in 10 times repeatedly... Ex: for i in range(5) : print(i) #output 0 1 2 3 4 https://www.sololearn.com/discuss/1702479/?ref=app https://www.sololearn.com/discuss/1750081/?ref=app.
23rd Aug 2020, 6:14 PM
Jayakrishna 🇮🇳