📜  均匀分布 python 示例 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:26.456000             🧑  作者: Mango

代码示例1
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)