Python 随机模块 randrange() 方法
实例
返回一个介于3和9之间的数字:
import random
print(random.randrange(3, 9))
#returns a number between 3 (included) and 9 (not included)
定义与用法
randrange()
方法返回指定范围内随机选择的元素。
语法
random.randrange(start, stop, step)
参数值
参数 | 描述 |
---|---|
start | 可选。指定起始位置的整数。默认值为0。 |
stop | 必须。指定结束位置的整数。 |
step | 可选。指定增量的整数。默认值为1。 |