Which loop has range of similar indexes of ‘i’ used in for (i = 0;i < n; i++)?
Answers
Answered by
0
Answer:
# you need to define n
for i in range(0,n) :
Explanation:
this is the example for python for loop
Similar questions