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
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