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

Respuesta :

Answer: Python

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

Answer:

for count in range(5, 8):

print(count)

Explanation:

Q&A Education