406,706 views
20 votes
20 votes
Which program will have the output shown below?

12
13
14
>>> for count in range(12, 15):
print(count)
>>> for count in range(15):
print(count)
>>> for count in range(12,14):
print(count)
>>> for count in range(14):
print(count)

User NBC
by
3.0k points

1 Answer

24 votes
24 votes

Answer:

>>> for count in range(12,14):

print(count)

User Alyona
by
3.3k points