what is the for...next loop
brunila:
mark my ans brainliest!!
Answers
Answered by
2
what is next loop what is it
Answered by
5
Looping is the key concept of programming.Every logic that U develop depends on loops and conditional control statements.
There are 2 types of loops:-
1)While loop
2)For loop
FOR LOOP
basic syntax:
for i in range(starting point,ending point,increment/decrement):
for is a key word that indicates for loop
i is the loop variable
range is the function that creates a set of values like starting n ending point for i.
There are 2 types of loops:-
1)While loop
2)For loop
FOR LOOP
basic syntax:
for i in range(starting point,ending point,increment/decrement):
for is a key word that indicates for loop
i is the loop variable
range is the function that creates a set of values like starting n ending point for i.
Similar questions