Python range() 函数
定义和用法
The range()
函数返回一个数字序列,默认从 0 开始,默认递增 1,并在指定数字之前停止。
语法
range(start, stop, step)
参数值
参数 | 描述 |
---|---|
start | 可选。一个整数,指定从哪个位置开始。默认值为 0 |
stop | 必需。一个整数,指定在哪个位置停止(不包含)。 |
step | 可选。一个整数,指定增量。默认值为 1 |
The range()
函数返回一个数字序列,默认从 0 开始,默认递增 1,并在指定数字之前停止。
range(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]