Hi!
I'm a little confused. In the examples section of the docs for the
random module it shows
uniform(2.5, 10.0) # Random float: 2.5 <= x < 10.0
But the docs say
random.uniform(a, b)
Return a random floating point number N such that a <= N <= b
for a <= b and b <= N <= a for b < a.
So, shouldn't the example really say
# Random float: 2.5 <= x <= 10.0
or am I not understanding random.uniform?
Best wishes,
Ted