“When you don’t know how many times → let the condition decide.”
That is "while loop."
i = 0
while i < 5:
print(i)
i += 1
Runs until the condition becomes false.
Careful… infinite loops are real 😅
#Python#WhileLoop#Programming#CodeLife
Day 6: Mastered the While Loop! 🔄
Today I have learned Iterative Statements.
Use for loops when you know the number of iterations. Use while loops when you don't and implemented
Careful with those infinite loops! 😅
#Python#CodingJourney#WhileLoop#LearningDailyLP