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
- iptables
- doupdate
- architecture
- vtable
- LOB
- edge trigger
- ncurses
- level trigger
- Docker
- wrefresh
- .net core 7
- mvwin
- cbpf
- Compiler
- ioctl
- 어셈블리어
- REDIS
- NAPT
- 취약점
- C언어
- DOCKER-USER
- 풀이
- BOF
- packet flow
- .nret core 배포
- rfc5508
- epoll_wait
- wnourefresh
- packet filter
- epoll
Archives
- Today
- Total
Tuuna Computer Science
python의 interning 본문
[python의 interning]
이미 생성된 객체를 재사용하는 것을 의미 - immutable 객체에대해 intering 한다.
a = "Test" # string intern
b = "Test" # string intern
x = id(a)
y = id(b) # x,y 는 동일한 메모리 가리킴
print(x, y) # 2611825223136 2611825223136
intern() 함수로 intering 객체로 지정 가능하다.
'Python' 카테고리의 다른 글
우분투 배경화면 자동 변경 스크립트 (0) | 2019.03.30 |
---|---|
파이썬 모듈제작과 시작점 (0) | 2018.04.15 |
Comments