I know that you can create a list from a range of numbers:
list(range(0,20,1))
output: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
but I want to take a step in each iteration:
list(range(0,20,1+incremental value)
pe when incremental = +1
expected output: [0, 1, 3, 6, 10, 15]
Is this possible in python?