I am using Python-3.3.2. How can I use range()to achieve float type of step? Assume my code is:
for x in range(1.5,20,0.25):
    print(x)
I am using Python-3.3.2. How can I use range()to achieve float type of step? Assume my code is:
for x in range(1.5,20,0.25):
    print(x)
 
    
    