我希望能够获得列表的范围字段。
考虑一下:
list = ['this', 'that', 'more']
print(list[0-1])
其中[0-1]
应该返回第一个和第二个字段。
为此,您需要使用 Python 的切片表示法:
>>> lst = ['this', 'that', 'more']
>>> print(lst[:2])
['this', 'that']
>>>
切片符号的格式是[start:stop:step]
.
另外,我将列表的名称更改为lst
. 命名变量被认为是一种不好的做法,list
因为这样做会使内置变量黯然失色。
利用:
list = ['this', 'that', 'more']
print(list[0:2])