Home Python - 여러가지 list copy 방법
Post
Cancel

Python - 여러가지 list copy 방법

Python list에 대해서

  • lst_a = lst
  • lst_b = lst[:]
  • lst_c = copy.copy(lst)
  • lst_d = copy.deepcopy(lst)

copy 방법들이 어떤 차이점이 있는지 자세히 알고싶어서 검색하던 중 설명이 잘 된 글을 찾게되어 아래에 공유합니다. Assignment 부분도 비교해주어서 좋았습니다.

Python: Assignment vs Shallow Copy vs Deep Copy

This post is licensed under CC BY 4.0 by the author.