___ 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
English,
1 month ago
History,
1 month ago
Math,
1 month ago
English,
3 months ago
Social Sciences,
3 months ago
Math,
9 months ago
CBSE BOARD X,
9 months ago