리스트를 복사하는 다양한 방법과 깊은 복사(deep copy)와 얕은 복사(shallow copy) 방법에 대해서 소개합니다.
1. list() 생성자를 이용한 방법 (shallow copy)
list()의 인자로 리스트를 전달하면, 모든 요소가 추가된 새로운 리스트가 리턴됩니다.
my_list = [1, 2, 3, 4, 5]
copied_list = list(my_list)
print(copied_list)
Output:
[1, 2, 3, 4, 5]
list()
를 이용한 복사는 얕은 복사입니다.
리스트에 기본 자료형만 있을 때는 깊은 복사인지, 얕은 복사인지 구분이 어렵지만 아래와 같이 리스트를 추가해서 변경해보면 쉽게 구분이 됩니다. 복사된 리스트의 요소를 변경했을 때, 원본 리스트의 요소도 함께 변경됩니다.
my_list = [1, 2, [3, 4, 5]]
copied_list = list(my_list)
copied_list[2][1] = 0
print("my_list:", my_list)
print("copied_list:", copied_list)
Output:
my_list: [1, 2, [3, 0, 5]]
copied_list: [1, 2, [3, 0, 5]]
2. list.copy()를 이용한 방법 (shallow copy)
list.copy()
는 리스트를 복사한 새로운 리스트를 리턴합니다. 이 방법도 얕은 복사입니다.
my_list = [1, 2, [3, 4, 5]]
copied_list = my_list.copy()
print("copied_list:", copied_list)
copied_list[2][1] = 0
print("my_list:", my_list)
print("copied_list:", copied_list)
Output:
copied_list: [1, 2, [3, 4, 5]]
my_list: [1, 2, [3, 0, 5]]
copied_list: [1, 2, [3, 0, 5]]
3. copy.copy()를 이용한 방법 (shallow copy)
copy.copy()
는 인자로 전달된 객체를 복사하고 객체를 리턴합니다. 이 방법도 얕은 복사입니다.
from copy import copy
my_list = [1, 2, [3, 4, 5]]
copied_list = copy(my_list)
print("copied_list:", copied_list)
copied_list[2][1] = 0
print("my_list:", my_list)
print("copied_list:", copied_list)
Output:
copied_list: [1, 2, [3, 4, 5]]
my_list: [1, 2, [3, 0, 5]]
copied_list: [1, 2, [3, 0, 5]]
4. copy.deepcopy()를 이용한 방법 (deep copy)
copy는 deepcopy()를 제공하며, 이 함수로 깊은 복사를 할 수 있습니다.
아래 예제의 실행 결과를 보면 복사된 객체의 요소를 변경해도 원본 데이터는 변경되지 않는 것을 볼 수 있습니다.
from copy import deepcopy
my_list = [1, 2, [3, 4, 5]]
copied_list = deepcopy(my_list)
print("copied_list:", copied_list)
copied_list[2][1] = 0
print("my_list:", my_list)
print("copied_list:", copied_list)
Output:
copied_list: [1, 2, [3, 4, 5]]
my_list: [1, 2, [3, 4, 5]]
copied_list: [1, 2, [3, 0, 5]]
Loading script...
Related Posts
- Python - Yaml 파일 파싱하는 방법
- Python - 파일 내용 삭제
- Python - for문에서 리스트 순회 중 요소 값 제거
- Python - 두 리스트에서 공통 요소 값 찾기
- Python - 문자열 앞(뒤)에 0으로 채우기
- Python - 공백으로 문자열 분리
- Python - 중첩 리스트 평탄화(1차원 리스트 변환)
- Python - 16진수 문자열을 Int로 변환
- Python - 두 날짜, 시간 비교
- Python f-string으로 변수 이름, 값 쉽게 출력 (변수명 = )
- Python - nonlocal과 global 사용 방법
- Python 바다코끼리 연산자 := 알아보기
- Python - pip와 requirements.txt로 패키지 관리
- Python - 딕셔너리 보기 좋게 출력 (pprint)
- Python - Requests 사용 방법 (GET/POST/PUT/PATCH/DELETE)
- Python - 온라인 컴파일러 사이트 추천
- Python - os.walk()를 사용하여 디렉토리, 파일 탐색
- Python - 문자열 비교 방법
- Python - Text 파일 읽고 쓰는 방법 (read, write, append)
- Python - 리스트에서 첫번째, 마지막 요소 가져오는 방법
- Python - 두개의 리스트 하나로 합치기
- Python - 리스트의 마지막 요소 제거
- Python - 리스트의 첫번째 요소 제거
- Python 소수점 버림, 4가지 방법
- Python 코드 안에서 버전 확인 방법
- Python 소수점 반올림, round() 예제
- Python - 리스트 평균 구하기, 3가지 방법
- Python - bytes를 String으로 변환하는 방법
- Python - String을 bytes로 변환하는 방법
- Python 버전 확인 방법 (터미널, cmd 명령어)
- Python - 람다(Lambda) 함수 사용 방법
- Python - dict 정렬 (Key, Value로 sorting)
- Python - range() 사용 방법 및 예제
- Python - 리스트를 문자열로 변환
- Python - 문자를 숫자로 변환 (String to Integer, Float)