range()函数

Posted 在这里, 意淫和实干都值得尊重

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了range()函数相关的知识,希望对你有一定的参考价值。

range() 函数

函数语法

range(start, stop[, step])

参数说明:

start: 计数从 start 开始。默认是从 0 开始。
stop: 计数到 stop 结束,但不包括 stop。
step:步长,默认为1。

扩充:

range(stop) 从零开始,每次生成一个整数后加1操作,直到stop为止(不包含stop)
range(start, stop[, step]) 从start开始,每次生成一个整数后移动step,直到stop为止(不包含stop,且step可以是负数)

作用:

用来生成一个可迭代的整数序列(生成器对象)

以上是关于range()函数的主要内容,如果未能解决你的问题,请参考以下文章

excel range函数

Python函数-1 range()函数

excel表里的函数range怎么用的

python中range()函数怎么用啊?

Python中range()函数的用法

Python内置函数(52)——range