list of range of floats
jay.dow at gmail.com
jay.dow at gmail.com
Wed Feb 14 12:47:24 EST 2007
More information about the Python-list mailing list
Wed Feb 14 12:47:24 EST 2007
- Previous message (by thread): Urllib2 and timeouts
- Next message (by thread): list of range of floats
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
a = 0.0
b = 10.0
inc = .2
flts = []
while a < b:
flts.append(a)
a += inc
- Previous message (by thread): Urllib2 and timeouts
- Next message (by thread): list of range of floats
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list