python | python 翻转列表 发表于 2021-05-20 更新于 2021-06-10 分类于 python python 翻转列表list1 = [1, 2, 3]print(list1[::-1]) # [3, 2, 1]