Tip (Reference)
[번역글]
https://m.blog.naver.com/passion053/221079317719
파이썬 입문자가 알면 좋은 유려한 기능 10선
* 이하의 내용은 10 Neat Python Tricks Beginners Should Know 의 글을 직접 번역한 것입니다. * 예...
blog.naver.com
효율적인 성능, 메모리, 사용성을 위한 파이썬 코드 사례
* 이하의 내용은 Python Practices for Efficient Code: Performance, Memory, and Usability 의 글...
blog.naver.com
https://m.blog.naver.com/passion053/221058266968
파이썬의 유용한 기능들
* 이하의 내용은 Advanced Python Features 의 글을 직접 번역한 것입니다. * 제가 번역한 것을 다른곳...
blog.naver.com
파이썬 class 기본 메소드
https://corikachu.github.io/articles/python/python-magic-method
파이썬 더블 언더스코어: Magic Method | Corikachu
파이썬에서 __를 달고있는 메소드들에 대해서 살펴봅시다.
corikachu.github.io
파이썬 메모리 관리
https://b.luavis.kr/python/python-malloc
Luavis' Dev Story - Python의 메모리 할당
Python이 메모리를 할당하고 관리하는 방법
b.luavis.kr
https://www.evanjones.ca/memoryallocator/
Improving Python's Memory Allocator
Improving Python's Memory Allocator Evan Jones <ejones@uwaterloo.ca> http://evanjones.ca/ [PDF version] Abstract Python automatically manages memory using reference counting. In order to provide good performance for typical programs, Python provides its ow</ejones@uwaterloo.ca>
www.evanjones.ca
쓰레드 관련
https://dgkim5360.tistory.com/entry/understanding-the-global-interpreter-lock-of-cpython
왜 Python에는 GIL이 있는가
Python 사용자라면 한 번 쯤은 들어봤을 (안 들어봤다 해도 괜찮아요) 악명 높은 GIL (Global Interpreter Lock)에 대해 정리해본다. Global Interpreter Lock 그래서 GIL은 무엇인가? Python Wiki에서는 이렇게..
dgkim5360.tistory.com
비동기 프로그래밍
https://mingrammer.com/translation-asynchronous-python/
[번역] 비동기 파이썬
Asynchronous Python을 번역한 글입니다. 파이썬에서의 비동기 프로그래밍은 최근 점점 더 많은 인기를 끌고있다. 비동기 프로그래밍을 위한 파이썬 라이브러리는 많다. 그
mingrammer.com