Computer Science, asked by sivakumar11mani, 6 months ago

Rewrite the following for loop into w
for a in range(25,500,25):
print(a)
1
C11​

Answers

Answered by harrywarman580
1

Answer:

25,50,75,100,125,150,175,200,225,250,275,300,325,350,375,400,425,450,475

Explanation:

it counts for value 1 to value 2 in steps of value 3

Similar questions