Respuesta :

A python program illustrating the use of loops to display numbers of calories burned after 5, 10, 15, 20, 25, and 30 minutes.

Loops are statements that perform repetitive operations. For different programming languages, they are different types of loops. In python, There are two types of loops; for and while loop.

#This prints the output header

print("Time\tCalory")

#This iterates from 5 to 30, with an increment of 5

for i in range(5, 30, 5):

  #This prints the calories burnt every 5 minutes

  print(i,"\t", i * 4)

Read more about loops at:

brainly.com/question/4261753