Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 54d2c3f

Browse files
committed
Random
1 parent 8e007a7 commit 54d2c3f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ from statistics import mean, median, variance, stdev, pvariance, pstdev
511511

512512
### Random
513513
```python
514-
from random import random, randint, choice, shuffle
514+
from random import random, randint, choice, shuffle, gauss, seed
515515
<float> = random()
516516
<int> = randint(from_inclusive, to_inclusive)
517517
<el> = choice(<list>)

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@
613613
<div><h3 id="statistics">Statistics</h3><pre><code class="python language-python hljs"><span class="hljs-keyword">from</span> statistics <span class="hljs-keyword">import</span> mean, median, variance, stdev, pvariance, pstdev
614614
</code></pre></div>
615615

616-
<div><h3 id="random">Random</h3><pre><code class="python language-python hljs"><span class="hljs-keyword">from</span> random <span class="hljs-keyword">import</span> random, randint, choice, shuffle
616+
<div><h3 id="random">Random</h3><pre><code class="python language-python hljs"><span class="hljs-keyword">from</span> random <span class="hljs-keyword">import</span> random, randint, choice, shuffle, gauss, seed
617617
&lt;float&gt; = random()
618618
&lt;int&gt; = randint(from_inclusive, to_inclusive)
619619
&lt;el&gt; = choice(&lt;list&gt;)

0 commit comments

Comments
 (0)