build_range_list(n) that returns a list containing the integers 1 through n (inclusive), in order. If n is less than 1, return an empty list.n = 5
[1, 2, 3, 4, 5]
Integers from 1 to 5 inclusive.
n = 0
[]
No positive integers to include.
range(1, n + 1) produces the right sequence.
Convert the range object to a list with list().