>>> import numpy as np >>> np.linspace(start=0, stop=7.5, num=4) array([ 0. , 2.5, 5. , 7.5]) >>> list(_) [0.0, 2.5, 5.0, 7.5]