python内置函数slice_Python3.6内置函数(58)——slice()

本文目录

英文文档

slice()

小结

英文文档

class slice(start, stop[, step])

Return a slice object representing the set of indices specified by range(start, stop, step). The start and step arguments default to None. Slice objects have read-only data attributes start, stop and step which merely return the argument values (or their default). They have no other explicit functionality; however they are used by Numerical Python and other third party extensions. Slice objects are also generated when extended indexing syntax is used. For example: a[start:stop:step] or a[start:stop, i]. See itertools.islice() for an alternate version that returns an iterator.

slice()

1. 函数实际上是一个切片类的构造函数,返回一个切片对象。

2. 切片对象由3个属性start、stop、step组成,start和step默认值为None。切片对象主要用于对序列对象进行切片取对应元素。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37>>> help ( slice )

class slice ( object )

| slice (stop )

| slice (start , stop [ , step ] )

|

| Create a slice object. This is used for extended slicing (e. g. a [ 0: 10: 2 ] ).

|

| Methods defined here:

|

| ... #省略#

| ----------------------------------------------------------------------

| Data descriptors defined here:

|

| start

|

| step

|

| stop

|

| ----------------------------------------------------------------------

| Data and other attributes defined here:

|

| __hash__ = None

>>> a = list ( range ( 10 ) )

>>> a

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

>>> a [ None: 5: None ] # start step显式为None

[ 0 , 1 , 2 , 3 , 4 ]

>>> a [: 5: ] # start step默认为None

[ 0 , 1 , 2 , 3 , 4 ]

>>> a [ 2: 5: None ] # step显式为None

[ 2 , 3 , 4 ]

>>> a [ 2: 5: ] # step默认为None

[ 2 , 3 , 4 ]

>>> a [ 1: 10: 3 ]

[ 1 , 4 , 7 ]

3. 对应切片对象的3个属性start、stop、step,slice函数也有3个对应的参数start、stop、step,其值分别会付给切片对象的start、stop、step。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15>>> c1 = slice ( 5 ) # 定义c1

>>> c1

slice ( None , 5 , None )

>>> c2 = slice ( 2 , 5 ) # 定义c2

>>> c2

slice ( 2 , 5 , None )

>>> c3 = slice ( 1 , 10 , 3 ) # 定义c3

>>> c3

slice ( 1 , 10 , 3 )

>>> a [c1 ] # 和a[:5:]结果相同

[ 0 , 1 , 2 , 3 , 4 ]

>>> a [c2 ] # 和a[2:5:]结果相同

[ 2 , 3 , 4 ]

>>> a [c3 ] # 和a[1:10:3]结果相同

[ 1 , 4 , 7 ]

小结

希望通过上面的操作能帮助大家。如果你有什么好的意见,建议,或者有不同的看法,我都希望你留言和我们进行交流、讨论。

欢迎关注微信公众号,谢谢大家支持:AiryData。

转载请注明:数据之美 Python3.6内置函数(58)——slice()

喜欢 (0) or 分享 (0)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值