Answer 3

Although Python is a garbage-collected language with no direct access to memory pointers, the typical memory leaks possible through illegal pointer operations can hardly happen. But there's another way through which the Python program can continue to consume more and more memory without releasing it. When the program forgets to dereference the objects once they're no longer in use, this may cause new objects to be allocated without the garbage collection of objects that are no longer in use taking place.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.17.79.20