Write a program that uses A LOOP to DISPLAY THE NUMBER OF CALORIES BURNED AFTER THE FOLLOWING INTERVALS: 10, 15, 20, 25, 30 MINUTES. USE IF STATEMENTS INSIDE THE LOOP FOR THESE INTERVALS
please include all of these
calories_per_second = 3.9
for i in range(10,31):
print(i *calories_per_second ," calories burned after ",i , " minutes")
Comments
Leave a comment