python range step_Python range()函数

range() constructor has two forms of definition:

1 range(stop)2 range(start, stop[, step])

range() Parameters

range() takes mainly three arguments having the same use in both definitions:

start - integer starting from which the sequence of integers is to be returned

stop - integer before which the sequence of integers is to be returned.

The range of integers end at stop - 1.

step (Optional) - integer value which determines the increment between each integer in the sequence

Return value from range()

range() returns an immutable sequence object of integers depending upon the definitions used:

range(stop)

Returns a sequence of numbers starting from 0 to stop - 1

Returns an empty sequence if stop is negative or 0.

range(start, stop[, step])

The return value is calculated by the following formula with the given constraints:

r[n] = start + step*n (for both positive andnegative step) where, n >=0 and r[n] < stop (forpositive step) where, n >= 0 and r[n] > stop (for negative step)

(If no step) Step defaults to 1. Returns a sequence of numbers starting from start and ending at stop - 1.

(if step is zero) Raises a ValueError exception

(if step is non-zero) Checks if the value constraint is met and returns a sequence according to the formula

If it doesn't meet the value constraint, Empty sequence is returned.

Example 1: How range works in Python?

1 #empty range

2 print(list(range(0)))3

4 #using range(stop)

5 print(list(range(10)))6

7 #using range(start, stop)

8 print(list(range(1, 10)))

When you run the program, the output will be:

[]

[0,1, 2, 3, 4, 5, 6, 7, 8, 9]

[1, 2, 3, 4, 5, 6, 7, 8, 9]

Note: We've converted the range to a Python list, as range() returns a generator-like object that only prints the output on demand.

However, the range object returned by the range constructor can also be accessed by its index. It supports both positive and negative indices.

You can access the range object by index as:

rangeObject[index]

Example 2: Create a list of even number between the given numbers using range()

1 start = 2

2 stop = 14

3 step = 2

4

5 print(list(range(start, stop, step)))

When you run the program, the output will be:

[2, 4, 6, 8, 10, 12]

Example 3: How range() works with negative step?

1 start = 2

2 stop = -14

3 step = -2

4

5 print(list(range(start, stop, step)))6

7 #value constraint not met

8 print(list(range(start, 14, step)))

When you run the program, the output will be:

[2, 0, -2, -4, -6, -8, -10, -12]

[]

转载:https://www.programiz.com/python-programming/methods/built-in/range

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值