How can I make a random number between something like 0.1 to 0.9 ?
randint only work for integer numbers =/
Thank you
Use random.uniform(). For your example, random.uniform(0.1, 0.9)
.
It's equivalent to using random.random() to get a value between 0.0 and 1.0, then scaling and shifting the value appropriately:
def rand_float_range(start, end):
return random.random() * (end - start) + start
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With