Does python's random.random() ever return 1.0 or it only returns up until 0.9999..?

link|improve this question

1  
There's gold in them thar hills. 42 points (and counting) for a question about what random.random() returns. <insert suitable exclamation> – telliott99 Feb 2 '10 at 2:05
Notice if you don't terminate your sequence 0.9999 it is actually equal to 1.0. – Thomas Ahle Jan 17 at 0:20
feedback

3 Answers

up vote 9 down vote accepted

Docs are here: http://docs.python.org/library/random.html

...random(), which generates a random float uniformly in the semi-open range [0.0, 1.0).

link|improve this answer
5  
For an explanation of the bracket/parent range notation, look here: en.wikipedia.org/wiki/Interval_(mathematics)#Terminology – Ben Gartner Feb 1 '10 at 21:52
I think Python's internal help system (as mentioned in another answer) is much more immediately accessible when you're programming in Python. help(random.random) would've given the OP the information (s)he needed. – Omnifarious Feb 1 '10 at 21:54
It's much better to link to the real documentation when you're writing on a webpage. – Glenn Maynard Feb 1 '10 at 22:36
feedback
>>> help(random.random)
Help on built-in function random:

random(...)
    random() -> x in the interval [0, 1).

That means 1 is excluded.

link|improve this answer
4  
I like your answer best. Python has a fantastic internal help system and people should be encouraged to use it. – Omnifarious Feb 1 '10 at 21:52
feedback

Python's random.random function returns numbers that are less than, but not equal to, 1.

However, it can return 0.

link|improve this answer
1  
random() -> x in the interval [0, 1) That is, including 0. – telliott99 Feb 1 '10 at 21:49
4  
@telliott99: That's (almost) exactly what I said. – SLaks Feb 1 '10 at 21:49
1  
+1 for being the only answer not to rely on sci-fi math notation! – Jørn Schou-Rode Feb 1 '10 at 22:13
1  
@Jørn Schou-Rode, I learned about open and closed intervals sometime in elementary to high-school. I can't remember when. People, especially programmers, should learn to understand them if they don't already. – Omnifarious Feb 2 '10 at 2:37
@Omnifarious: it was so long time ago that i forgot about them and i actually thought that that was a typo in their docs – daniels Feb 2 '10 at 8:52
feedback

Your Answer

 
or
required, but never shown

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