Contoh Python Distribusi Seragam

from random import uniform
array = []

for i in range(10):
	array.append(uniform(0.0, 100.0))

print(array)
[40.59813585027852, 68.7703401239061, 26.913790531262215, 2.439230591613828, 76.58211953479649, 42.42738253824879, 78.99082452505225, 42.01341952516737, 30.749439064487294, 79.55554892599972]
# random floating point values with uniform distribution
# (every number has the same chance)
Leo