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 ( 來源 ) 使用第三步引數