Online Python Compiler (Interpreter) - Programiz
Online Python Compiler (Interpreter) - Programiz
1 distance=0
2 total_distance=0
3 longest_distance=0
4 day = 0
5 for i in range(7):
6 day = day+1
7 print("Day",day)
8 distance=int(input("Enter the distance you ran
today: "))
9 total_distance =distance + total_distance
10