Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I make a random number between something like 0.1 to 0.9 ?

randint only work for integer numbers =/

Thank you

share|improve this question

1 Answer

up vote 12 down vote accepted

Use random.uniform(). For your example, random.uniform(0.1, 0.9).

It's equivalent to using random.random() to get a value between 0.0 and 1.0, then scaling and shifting the value appropriately:

def rand_float_range(start, end):
    return random.random() * (end - start) + start
share|improve this answer
1  
The above is a good answer, but also take a look at numpy.random docs.scipy.org/doc/numpy/reference/routines.random.html – James Broadhead Aug 20 '10 at 17:37
+1: Never knew that was there. Way better than my trivialized "just multiply randint by a floating point number" answer, and it's about 3 times faster. – sdolan Aug 20 '10 at 18:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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