explain the general form of " for loop" and " while loop" with python program
explain for loop, general form, program and out put
Answers
Answered by
0
Answer:
please make me Brainlist and thanks
Explanation:
The general form of the for statement can be expressed like this: for (initialization; termination; increment) { statement(s) } The initialization is an expression that initializes the loop — it's executed once at the beginning of the loop. The termination expression determines when to terminate the loop.
Similar questions