173k views
3 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, 14):
print(count)

>>> for count in range(13):
print(count)

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

2 Answers

5 votes

Answer

The answer is A. Hope this helps you out. Have a wonderful day and stay safe.

Step-by-step explanation:

User Edward Minnix
by
4.7k points
0 votes

Answer: >>> for count in range(10, 14):

print(count)

Step-by-step explanation:

just took the test on edg

User Pioupiou
by
5.1k points