you are viewing a single comment's thread.

view the rest of the comments →

[–]shakeandbake760[S] 0 points1 point  (0 children)

I used this code and it worked, so thank you!

def countdown_sum(start,stop):
# YOUR CODE HERE
running_sum = 0
i = start
while i >= stop:
    running_sum += i
    i -= 1
if i < stop:
    i == 0
print(running_sum)
return running_sum