Predict the output 
def floatRange(start,stop,step):
    list = []
    list.append(start)
    while start <= stop-step:
        start += step
        list.append(start)
    return list

print(floatRange(0,10,2.5))


Posted on by