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]
Share

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です