Numpy Random Float массив от 0 до 1

# Returns an array of floats between 0 and 10 of size 15
np.random.uniform(low=0, high=10, size=15)
RosiePuddles