What is difference between while and for loop?

23.18K viewsProgrammingAlgorithm Difference For Loop python While

What is difference between while and for loop?

Difference in loops

Abhishek Verma Answered question January 31, 2023
0

1. Number of iterations is already known in ‘for loop’ but number of iterations is not known in ‘while loop’.
2. ‘for’ loop is used to iterate over items of any sequence but ‘while’ loop is used to execute a block of statement as long as a
given condition is true.
3. If number of iterations is known, it is suggested to use ‘for’ loop and if not known ‘while’ loop is suggested.

follow me 🙂
thanks!

Abhishek Verma Answered question January 31, 2023
0
You are viewing 1 out of 1 answers, click here to view all answers.