Python 将列表中的头尾两个元素对调

Posted 日常分享Python

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 将列表中的头尾两个元素对调相关的知识,希望对你有一定的参考价值。

定义一个列表,并将列表中的头尾两个元素对调。

例如:

对调前 : [1, 2, 3]
对调后 : [3, 2, 1]

实例1

def swapList(newList):
    size = len(newList)

    temp = newList[0]
    newList[0] = newList[size - 1]
    newList[size - 1] = temp

    return newList

newList = [1, 2, 3]

print(swapList(newList))

以上实例输出结果为:

[3, 2, 1]

实例2

def swapList(newList):

    newList[0], newList[-1] = newList[-1], newList[0]

    return newList

newList = [1, 2, 3]
print(swapList(newList))

以上实例输出结果为:

[3, 2, 1]

实例3

def swapList(list):

    get = list[-1], list[0]

    list[0], list[-1] = get

    return list

newList = [1, 2, 3]
print(swapList(newList))

以上实例输出结果为:

[3, 2, 1]

以上是关于Python 将列表中的头尾两个元素对调的主要内容,如果未能解决你的问题,请参考以下文章

Python代码阅读(第40篇):通过两个列表生成字典

Python代码阅读(第13篇):检测列表中的元素是否都一样

Python代码阅读(第25篇):将多行字符串拆分成列表

python的题目?

30 段 Python 实用代码

查找列表中的最小元素(递归) - Python