Create a Python list of numbers from 1 through 1000.
Implement create_numbers(limit) so it returns every integer from 1 through limit, inclusive. The interview evaluation calls the function with limit = 1000; smaller limits are included for testing.
Input: An integer limit.
Output: A Python list containing the integers from 1 through limit in ascending order.
def create_numbers(limit):