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