We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
def sum_range(start, stop): total = 0 for num in range (start, stop + 1): total += num return total