Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在没有先关闭打开的文件的情况下结束交互式 Python 会话的后果是什么?我知道关闭文件是释放内存和系统资源所必需的,但是在会话结束后他们会继续使用这些资源吗?
当 Python 解释器退出时,它会在自己(以及你的程序之后)进行清理,并关闭打开的文件。