リストを定義し、リスト内の指定された位置の2つの要素を互換します。
例えば、1番目と3番目の要素を互換します。
互換前: List = [23, 65, 19, 90], pos1 = 1, pos2 = 3
互換後:[19, 65, 23, 90]
例1
def swapPositions(list, pos1, pos2):
list[pos1], list[pos2] = list[pos2], list[pos1]
return list
List = [23, 65, 19, 90]
pos1, pos2 = 1, 3
print(swapPositions(List, pos1-1, pos2-1))
上記の例の結果は次のとおりです。
[19, 65, 23, 90]
例2
def swapPositions(list, pos1, pos2):
first_ele = list.pop(pos1)
second_ele = list.pop(pos2-1)
list.insert(pos1, second_ele)
list.insert(pos2, first_ele)
return list
List = [23, 65, 19, 90]
pos1, pos2 = 1, 3
print(swapPositions(List, pos1-1, pos2-1))
上記の例の結果は次のとおりです。
[19, 65, 23, 90]
例3
def swapPositions(list, pos1, pos2):
get = list[pos1], list[pos2]
list[pos2], list[pos1] = get
return list
List = [23, 65, 19, 90]
pos1, pos2 = 1, 3
print(swapPositions(List, pos1-1, pos2-1))
上記の例の結果は次のとおりです。
[19, 65, 23, 90]
コメントを残す