I would like to create a list in Python with n elements that have the same distance between each other. So the seried list should looke like [0.05, 0.1, 0.15 ..., 0.95, 1]. I tried the following but it did not work:
list = [range(0.05, 1, 0.05)]
list_2 = [i for i in range(0.05, 1)]
Any idea, how I can do that?