___ is the output of the following program for i in range(5,20,5)
Answers
Answered by
1
Complete program:
# ___ is the output of the following program
for i in range(5,20,5):
print i
Output:
5
10
15
Explanation:
range(5,20,5) translates to the loop begins with i =5 and runs as long as i<20 with an increment of 5 each time the loop runs.
Similar questions
Biology,
2 months ago
Math,
2 months ago
English,
4 months ago
Social Sciences,
4 months ago
Math,
10 months ago
CBSE BOARD X,
10 months ago