Quote:
Originally Posted by gaben
Is 'random' (0,100) the range of numbers from 0-100? I can't find any documentation on this!
|
Yes, it will never equal the maximum though.
int(random(0,100)) - int 'floors' the value which means it will always return a number >= 0 and <= 99.