randrange(start, stop) only takes integer arguments... So how would I get a random number between two float values?

link|improve this question

62% accept rate
feedback

2 Answers

up vote 12 down vote accepted

Use random.uniform(a, b):

>>> random.uniform(1.5, 1.9)
1.8733202628557872
link|improve this answer
feedback

random.uniform(a, b) appears to be what your looking for. From the docs:

Return a random floating point number N such that a <= N <= b for a <= b and b <= N <= a for b < a.

See here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.