My apologies as I'm new to Python and struggling with list comprehensions.
I can make a simple list in the following way:
min = whatever arbitrary number (not integer)
step= whatever arbitrary number (not integer)
lower_bound[0] = min
for index = 1 to 9
lower_bound[index] = lower_bound[index-1] + step
How do I be more Pythonic with list comprehension? Also, what is a good resource on the basics of list comprehension? Thanks.