diff --git a/README.md b/README.md index fa2bd7e..3a12dc2 100644 --- a/README.md +++ b/README.md @@ -511,7 +511,7 @@ from statistics import mean, median, variance, stdev, pvariance, pstdev ### Random ```python -from random import random, randint, choice, shuffle +from random import random, randint, choice, shuffle, gauss, seed = random() = randint(from_inclusive, to_inclusive) = choice() diff --git a/index.html b/index.html index fe53644..a434637 100644 --- a/index.html +++ b/index.html @@ -613,7 +613,7 @@ to_exclusive = <range>.stop

Statistics

from statistics import mean, median, variance, stdev, pvariance, pstdev
 
-

Random

from random import random, randint, choice, shuffle
+

Random

from random import random, randint, choice, shuffle, gauss, seed
 <float> = random()
 <int>   = randint(from_inclusive, to_inclusive)
 <el>    = choice(<list>)