Thursday, September 4, 2025
HomeLanguagesPython | sys.getallocatedblocks() method

Python | sys.getallocatedblocks() method

This sys module provides access to some variables used or maintained by the interpreter and to functions that interact strongly with the interpreter. It provides information about constants, functions and methods of python interpreter. It can be used for manipulating Python runtime environment.

sys.getallocatedblocks() is used to get number of memory blocks currently allocated by the interpreter, regardless of their size. This function is mainly useful for tracking and debugging memory leaks. To get more predictable results, we may have to call _clear_type_cache() and gc.collect().

Syntax: sys.getallocatedblocks()
Parameter: This method accepts no parameter.
Return Value: This method returns the number of memory blocks currently allocated by the interpreter but if it cannot reasonably compute this information then 0 is returned.

Example #1 :

Using sys.getallocatedblocks() method to find the memory allocated to interpreter.




# Python program to explain sys.getallocatedblocks() method 
      
# Importing sys module 
import sys 
  
# Using sys.getallocatedblocks() method
memory = sys.getallocatedblocks()
  
# Print result
print(memory) 


Output:

20731
Last Updated :
25 Jun, 2019
Like Article
Save Article

<!–

–>

Similar Reads
Related Tutorials
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32261 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6626 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6747 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6695 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS