Computer Science, asked by prasannaprince21, 2 months ago

The equivalent for loop for the following while loop is __________.

i=1

while(i<=20) :

i+=2

(a) for i in range(1,20,2) :

(b) for i in range(0,20,2) :

(c) for i in range(1,20,2) :

(d) none of these​

Answers

Answered by CdtRaghib
2

Answer:

(a) for i in range (1,20,2)

Similar questions