if my comment is the case, you can append items in your list, based on range as follows:
start = int(input("Enter starting number: "))
stop = int(input("Enter number to stop viewing at: "))
numbers=[]
for i in range(start, stop+1):
numbers.append(i)
print list
for rounding digits:
round(number[, ndigits])
Return the floating point value number
rounded to ndigits digits after the decimal point. If ndigits is
omitted, it defaults to zero. The result is a floating point number.
Values are rounded to the closest multiple of 10 to the power minus
ndigits; if two multiples are equally close, rounding is done away
from 0 (so, for example, round(0.5) is 1.0 and round(-0.5) is -1.0).
from python orgs documentation.
stop = int(input(Enter number to stop viewing at: "))You're missing a quotation.