[파이썬] 리스트 두 요소 위치 바꾸기

arr = ['a', 'b', 'c', 'd', 'e']



arr[0], arr[2] = arr[2], arr[0]

print(arr)

# -> ['c', 'b', 'a', 'd', 'e']

참고

  • https://growingarchive.tistory.com/146

links

social