Skip to content

Home

Initialize list with range

Initializes a list containing the numbers in the specified range where start and end are inclusive with their common difference step.

def initialize_list_with_range(end, start = 0, step = 1):
  return list(range(start, end + 1, step))

initialize_list_with_range(5) # [0, 1, 2, 3, 4, 5]
initialize_list_with_range(7, 3) # [3, 4, 5, 6, 7]
initialize_list_with_range(9, 0, 2) # [0, 2, 4, 6, 8]

More like this

Start typing a keyphrase to see matching snippets.