Generate Range of Integers.py 84 B

12
  1. def generate_range(min, max, step):
  2. return [i for i in range(min, max+1, step)]