I am a newbie. So starting to learn python, I tried to generate random values by passing in a negative and positive number.
Let say -1, 1. Can someone let me know how I should do this in python.
Thanks in advance
|
|
|
|||||
|
EDIT: @San4ez's Anyway,
|
|||||||||
|
|
Most languages have a function that will return a random number in the range [0, 1], which you can then manipulate to suite the range you need. In python, the function is
By doubling the number we get a range of [0, 2], and by subtracting one from it, we get [-1, 1]. |
|||
|
|
|
if you want integer in a specified range:
it uses the same convention as
|
||||
|
|