According to list from range
the following should work:
x = list(range(0, 10, 100))
print(x)
but it prints [0]
, while I am expecting [0,0.01,...,10]
What am I missing?
According to list from range
the following should work:
x = list(range(0, 10, 100))
print(x)
but it prints [0]
, while I am expecting [0,0.01,...,10]
What am I missing?
range
doesn't do fractions. Also the third argument is the step, that is:
range(start, stop, step)
To get what you want with fractions you can use numpy
arrays. For example:
import numpy as np
x = np.linspace(0, 10, 100)