0 votes
in Python by
Is memory de-allocated when you exit Python?

1 Answer

0 votes
by

No. Modules with circular references to other objects are not always freed. It is also impossible to free some of the memory reserved by the C library.

Related questions

+1 vote
asked Feb 15, 2021 in Python by SakshiSharma
+1 vote
asked Feb 13, 2023 in Python by rajeshsharma
...