4 lines
78 B
Python
4 lines
78 B
Python
|
|
>>> import random
|
||
|
|
>>> values = [random.gauss(1, .5) for i in range(1000)]
|
||
|
|
>>>
|