前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Python数据分析(中英对照)·Sequences 序列

Python数据分析(中英对照)·Sequences 序列

作者头像
数媒派
发布2022-12-01 15:20:16
3920
发布2022-12-01 15:20:16
举报
文章被收录于专栏:产品优化

1.2.1:Sequences 序列

在Python中,序列是按位置排序的对象集合。 In Python, a sequence is a collection of objects ordered by their position. 在Python中,有三个基本序列,即列表、元组和所谓的“范围对象”。 In Python, there are three basic sequences,which are lists, tuples, and so-called "range objects". 但是Python也有额外的序列类型来表示字符串之类的东西。 But Python also has additional sequence types for representing things like strings. 关于序列的关键方面是,任何序列数据类型都将支持公共序列操作。 The crucial aspect about sequences is that any sequence data type will support the common sequence operations. 但是,除此之外,这些不同的类型将有自己的方法可用于执行特定的操作。 But, in addition, these different types will have their own methods available for performing specific operations. 序列被称为“序列”,因为它们包含的对象形成了一个序列。 Sequences are called "sequences" because the objects that they contain form a sequence. 让我们以图表的形式来看。 So let’s look at this as a diagram. 假设这是我们的序列,在这个例子中,序列中有一些不同的对象——三角形、正方形和圆形。 Imagine that this is our sequence, and we have a few different objects in our sequence here– triangles, squares,and circles, in this example. 要理解序列的第一个基本方面是索引从0开始。 The first, fundamental aspect to understand about sequences is that indexing starts at 0. 因此,如果我们称这个序列为“s”,我们将通过键入“s”来访问序列中的第一个元素,并在括号中放入它的位置,即0。 So if we call this sequence "s", we would access the first element in our sequence by typing "s" and, in brackets, putting its location, which is 0. 这个位于第二个位置的对象将作为s[1]进行寻址和访问,依此类推。 This object here in the second position would be addressed and accessed as s[1], and so on. 这将是s2,3和4。 This would be s 2, 3, and 4. 访问序列中对象的另一种方法不是从左向右计数,而是从右向左计数。 Another way to access objects within the sequence is not to count from left to right, but from right to left. 所以我们可以通过给出一个正的索引来访问序列,这是从左到右计数一个位置,或者我们可以使用一个负的索引,这是从右到左计数位置。 So we can access sequences either by giving a positive index, which is counting a location from the left to right,or we can use a negative index, which is counting positions from right to left. 在这种情况下,我们必须对序列中的最后一个对象使用负1。 In that case, we have to use the negative 1 for the very last object in our sequence. 相应地,负2对应于倒数第二个对象,依此类推。 Correspondingly, minus 2 would correspond to the second to last object, and so on. 序列还支持称为“切片”的操作 Sequences also support an operation called "slicing." 现在让我们来看一看。 So let’s take a look at that now. 如果我们再次拥有序列“s”。要访问特定的单元、特定的对象,我们只需要使用位置——例如,在本例中为2。 If we, again, have our sequence "s". To access a specific unit, specific object, we would just use the location– for example, 2, in this case. 但是,如果我们想提取序列中的多个对象,我们可以执行以下操作。 However, if we wanted to extract multiple objects in the sequence,we can do the following. 我们可以说s括号,比如说,0,2。 We can say s bracket, say, 0, 2. 这是第一个索引,第一个位置是起始位置,第二个位置是停止位置。 This first index, the first position is the start position,and the second position here is to stop position. Python切片在Python到达停止位置的元素之前停止。 Python slices stop before Python reaches the element at the stop location. 这意味着,如果键入“s”,并在括号中键入“0 column 2”,Python将返回一个包含位置0和1中的对象的切片,但不会返回位置2处的对象。 This means that if you type "s", and, in brackets, "0 column 2",Python is going to return a slice to which consists of the objects in locations 0 and 1,but it will not return to you the object at location 2.

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 1.2.1:Sequences 序列
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档