I'm learning python 3. I expect this program to sum together a decreasing sequence of integers. Instead, I get NONE.
If this was throwing an error I might be able to figure out what I'm doing wrong, but in this case I am stumped.
def add_many_things(init_value):
accumulator = 0
while init_value > 0 :
accumulator = accumulator + init_value
init_value = init_value - 1
result = add_many_things(37)
print(f"{result}")