0
0

More than 1 year has passed since last update.

Python openしたファイルはcloseすること

Posted at

放っておいてもガベージコレクションによっていずれクローズされる。
しかし明示的に閉じるのが良い習慣である。
参照
https://teratail.com/questions/217860

ガベージコレクションとは、コンピュータプログラムの実行環境などが備える機能の一つで、実行中のプログラムが占有していたメモリ領域のうち不要になったものを自動的に解放し、空き領域として再利用できるようにするもの。 そのような処理を実行するプログラムを「ガベージコレクタ」(garbage collector)という。

pythonのガーベージコレクション
https://www.sejuku.net/blog/90518

0
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0