StackOverflow 文档 Python Language 教程 列表切片(选择列表的部分) 列表切片(选择列表的部分) Created: November-22, 2018 lst[::-1] 为你提供列表的反向副本 start 或 end 可以是负数,这意味着它从数组的末尾而不是从开头开始计数。所以: a[-1] # last item in the array a[-2:] # last two items in the array a[:-2] # everything except the last two items ( 来源 ) 使用第三步参数