[RUS] Denis Kataev: “Python and binary data“ / #PiterPy

Python and binary data Managing memory in Python is easy — if you just don’t care. In theory, it’s well, because you don’t worry about garbage collection or memory allocation. However, sometimes the usual append of an element to the end of the list takes a long time unexpectedly. To avoid surprises, you need to know a few things about Python memory management. In my talk we will go over the key features of the interpreter by using an example — we will create a simple database system step by step, using onl
Back to Top