Python 随机数 randint() 方法
定义和用法
The randint()
方法从指定范围内返回一个随机整数。
注意: 此方法是 randrange(start, stop+1)
的别名。
语法
random.randint(start, stop)
参数值
参数 | 描述 |
---|---|
start | 必需。一个整数,指定起始位置。 |
stop | 必需。一个整数,指定结束位置。 |
The randint()
方法从指定范围内返回一个随机整数。
注意: 此方法是 randrange(start, stop+1)
的别名。
random.randint(start, stop)
参数 | 描述 |
---|---|
start | 必需。一个整数,指定起始位置。 |
stop | 必需。一个整数,指定结束位置。 |
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]