math_random#

图块代码

../../_images/math_random.png

javascript

Math.random() * (to - from) + from

python

random.randrange(from, to)

npl

math.random(from, to-1)

参数#

参数

类型

默认值

说明

from

number

0

to

number

10

示例#

Math.random() * (10 - 0) + 0
random.randrange(0, 10)
math.random(0, 10-1)