0

我希望能够获得列表的范围字段。

考虑一下:

list = ['this', 'that', 'more']

print(list[0-1])

其中[0-1]应该返回第一个第二个字段。

4

2 回答 2

4

为此,您需要使用 Python 的切片表示法

>>> lst = ['this', 'that', 'more']
>>> print(lst[:2])
['this', 'that']
>>>

切片符号的格式是[start:stop:step].

另外,我将列表的名称更改为lst. 命名变量被认为是一种不好的做法,list因为这样做会使内置变量黯然失色。

于 2013-10-28T00:40:47.867 回答
3

利用:

list = ['this', 'that', 'more']
print(list[0:2])
于 2013-10-28T00:41:00.873 回答