From: zipperer <47086307+zipperer@users.noreply.github.com> Date: Thu, 9 Nov 2023 14:58:04 +0000 (-0600) Subject: Add detail to comment on range of random.random() (gh-111868) X-Git-Tag: v3.13.0a2~141 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2f2a0a3a6c5494bcf13a8f587c28e30d86617ff0;p=thirdparty%2FPython%2Fcpython.git Add detail to comment on range of random.random() (gh-111868) --------- Co-authored-by: Raymond Hettinger --- diff --git a/Doc/tutorial/stdlib.rst b/Doc/tutorial/stdlib.rst index 6bae279c5e9c..63f4b5e1ce02 100644 --- a/Doc/tutorial/stdlib.rst +++ b/Doc/tutorial/stdlib.rst @@ -153,7 +153,7 @@ The :mod:`random` module provides tools for making random selections:: 'apple' >>> random.sample(range(100), 10) # sampling without replacement [30, 83, 16, 4, 8, 81, 41, 50, 18, 33] - >>> random.random() # random float + >>> random.random() # random float from the interval [0.0, 1.0) 0.17970987693706186 >>> random.randrange(6) # random integer chosen from range(6) 4