广州北大青鸟计算机职业培训学校
互联网技术培训、软件技术培训、大数据培训、云计算培训、数据分析培训信息网
当前位置:网站首页 > 软件教程 > Python技术 > 正文

Python将列表中的头尾两个元素对调_惠州计算机Python软件开发

作者:黄君发布时间:2021-01-11分类:Python技术浏览:1082


导读:定义一个列表,并将列表中的头尾两个元素对调。例如:

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

例如:

对调前 : [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培训


Python技术排行
标签列表
网站分类
文章归档
最近发表