本站改版新增arduino频道

Micropython
Arduino

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


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

定义一个列表,并将列表中的头尾两个元素对调。
例如:
对调前 : [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]



推荐分享
图文皆来源于网络,内容仅做公益性分享,版权归原作者所有,如有侵权请告知删除!
 

Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号

执行时间: 0.0093879699707031 seconds