Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
非常简单(并且可能是愚蠢的问题)python中的“列表切片”是什么,有人可以举一个列表切片的例子。
谢谢 !
列表切片正在创建一个包含请求元素的新列表。
a = ['spam', 'eggs', 100, 1234]
这意味着以下切片返回列表 a 的浅表副本:
>>> a[:] ['spam', 'eggs', 100, 1234]
一个示例是访问数组的前三个项目,如下所示:
arr[:3]
此页面上还有许多其他示例:
http://docs.python.org/2/tutorial/introduction.html