From 84450d6a695c1b8a4d307cc206605c4f1ab1a5f3 Mon Sep 17 00:00:00 2001 From: PapIT Date: Thu, 20 May 2021 09:47:40 +0200 Subject: [PATCH] FIX random range with parentheses --- Doc/library/random.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/random.rst b/Doc/library/random.rst index e444f9573246a6..ea37bea316eb72 100644 --- a/Doc/library/random.rst +++ b/Doc/library/random.rst @@ -273,7 +273,7 @@ be found in any statistics text. .. function:: random() - Return the next random floating point number in the range [0.0, 1.0). + Return the next random floating point number in the range (0.0, 1.0). .. function:: uniform(a, b)