Computer Science, asked by mdrhp123456, 7 months ago

Which loop has range of similar indexes of ‘i’ used in for (i = 0;i < n; i++)?

Answers

Answered by aniketkabaddi01
0

Answer:

# you need to define n

for i in range(0,n) :

Explanation:

this is the example for python for loop

Similar questions