def skip_down(num, skip): count = 0 lst = [0] while count< num: count = count + skip lst.append(count) return lst print(skip_down(10, 3))