Computer Science, asked by shaksams35, 3 months ago

10. Which of these will allow me to count from 0-20 in steps of 5?
1. for x in range(0,20): print(x)
ii. while x = (0,20,5): print(x)
iii. for x in range(0,21,5): print(x)
iv. for x in range(0,21,5): print(y)​

Answers

Answered by atrs7391
3

Answer:

10. Which of these will allow me to count from 0-20 in steps of 5?

i. for x in range(0,20): print(x)

ii. while x = (0,20,5): print(x)

iii. for x in range(0,21,5): print(x)✔✔

iv. for x in range(0,21,5): print(y)​

Similar questions