Which program will have the output shown below?
15
16
17
>>> for count in range(17):
print(count)
>>> for count in range(15, 17):
print(count)
>>> for count in range(15, 18):
print(count)
>>> for count in range(18):
print(count)
Answers
Answer 1
Answer:
>>> for count in range(15, 18):
print(count)
is the correct answer
Explanation:
Related Questions
Best of Luck for your work and d Best wishes for you .