over()函数的范围函数有哪些

avatar
作者
筋斗云
阅读量:0

Python中的range()函数有三种形式:

  1. range(stop):表示从0开始,到stop-1为止(不包括stop)的整数序列。
  2. range(start, stop):表示从start开始,到stop-1为止(不包括stop)的整数序列。
  3. range(start, stop, step):表示从start开始,到stop-1为止(不包括stop),以step为步长的整数序列。

例如:

  • range(5)生成的序列为0, 1, 2, 3, 4
  • range(2, 6)生成的序列为2, 3, 4, 5
  • range(1, 10, 2)生成的序列为1, 3, 5, 7, 9

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!