155k views
5 votes
Which program will have the output shown below?

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

User Bgrober
by
5.5k points

2 Answers

4 votes

Answer:

for count in range(10, 14):

print(count)

User Aditya Pasumarthi
by
4.7k points
7 votes

Answer:

for count in range(10, 14):

print(count)

hope i helped :D

User Mmagnuski
by
5.5k points