Answers for "how memory management works in python"

11

python memory usage

import sys
a, b, c,d = "abcde" ,"xy", 2, 15.06
print(sys.getsizeof(a))
print(sys.getsizeof(b))
print(sys.getsizeof(c))
print(sys.getsizeof(d))

#Running the above code gives us the following result
38
35
24
24
Posted by: Guest on September-19-2020
0

MEMORY MANAGEMENT SYSTEM IN PYTHON

Memory Management in Python is managed by Python Private heap space. All python objects and data structures are stored in heap area. Programmers do not have any direct access to private heap area, interpreter takes care of it.
Posted by: Guest on November-28-2021

Python Answers by Framework

Browse Popular Code Answers by Language