list of range of floats

jay.dow at gmail.com jay.dow at gmail.com
Wed Feb 14 12:47:24 EST 2007


a = 0.0
b = 10.0
inc = .2
flts = []
while a < b:
    flts.append(a)
    a += inc





More information about the Python-list mailing list