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, It's equivalent to using random.random() to get a value between 0.0 and 1.0, then scaling and shifting the value appropriately:
|
|||||||
|