Python 随机数 randrange() 方法
定义和用法
The randrange()
方法从指定范围内返回一个随机选择的元素。
语法
random.randrange(start, stop, step)
参数值
参数 | 描述 |
---|---|
start | 可选。指定从哪个位置开始的整数。 默认值 0 |
stop | 必需。指定从哪个位置结束的整数。 |
step | 可选。指定增量的整数。 默认值 1 |
The randrange()
方法从指定范围内返回一个随机选择的元素。
random.randrange(start, stop, step)
参数 | 描述 |
---|---|
start | 可选。指定从哪个位置开始的整数。 默认值 0 |
stop | 必需。指定从哪个位置结束的整数。 |
step | 可选。指定增量的整数。 默认值 1 |
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]