Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 채보
- error
- 프로그래머스
- Linux
- pytorch
- paramiko
- Docker
- 오류
- pandas
- VS Code
- JSON
- C#
- Visual Studio
- Selenium
- ubuntu
- OpenCV
- 기타 연주
- SSH
- windows forms
- mysql
- pip
- Python
- label
- 명령어
- C++
- YOLO
- LIST
- Numpy
- 핑거스타일
- C
Archives
- Today
- Total
목록Deep Copy (1)
기계는 거짓말하지 않는다
Python 깊은 복사, 얕은 복사 (Shallow Copy, Deep Copy)
Python의 list 복사를 예시로 들 수 있다. 얕은 복사(Shallow Copy)는 list 뿐 아니라 mutable 객체 모두 문제가 된다. Docs: Python copy module copy — Shallow and deep copy operations Source code: Lib/copy.py Assignment statements in Python do not copy objects, they create bindings between a target and an object. For collections that are mutable or contain mutable items, a copy ... docs.python.org List 초기화 # 2차원 list 10행 5열 생성, 초기..
Python
2023. 2. 12. 22:05