114k views
0 votes
Which program will have the output shown below?

5
6
7

>>> for count in range(5.7):
print(count)
>>> for count in range (4,7):
print count)
>>> for count in range (4 ,8)
print count
>>> forcount in range (5,8)
prin count

User Igor Goyda
by
5.7k points

2 Answers

5 votes

Answer: Python

Explanation: All I know is that the programming language is Python.

User Mark Hildreth
by
5.6k points
1 vote

Answer:

for count in range(5, 8):

print(count)

Step-by-step explanation:

User Divyanshu Das
by
5.1k points