본문 바로가기
프로그래밍 언어/파이썬

[Python] 리스트 복사

by 컴공맨 2021. 3. 28.
# 1
list = [1, 2, 3, 4]
copy_list = list[:]
copy_list[0] = 5
 
print(list)
print(copy_list)

# 출력결과
# [1, 2, 3, 4]
# [5, 2, 3, 4]

# 2
copy_list = list
copy_list[0] = 5

print(list)
print(copy_list)

# 출력결과
# [5, 2, 3, 4]
# [5, 2, 3, 4]

'프로그래밍 언어 > 파이썬' 카테고리의 다른 글

[Python] eval()  (0) 2021.03.28
[Python] 정규표현식 (계속 추가예정)  (0) 2021.03.14
[Python] 문자열을 일정 길이로 자르기  (0) 2021.03.14
[Python] count()  (0) 2021.03.06
[Python] dict 정렬  (0) 2021.03.06