Checkpoint 2:
What I understood well was the print_even_numbers, print_odd_numbers, and print_multiples_of_five functions because it reminded me of an assignment I had in my previous coding courses.
What I found interesting about ranges is that it included the first and last numbers in the list. My initial assumption was that when using ranges it would call every number in between the first and last digit, excluding the first and last digit.
With ranges I am a little unsure about whether range includes the maximum numberor stops just before it, and when I should add the +1 to make sure the endpoint is included.