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.
我正在使用函数 open_workbook() 打开一个 excel 文件。但是我稍后在 xlrd 模块中找不到任何关闭文件的函数。有没有办法使用 xlrd 关闭 xls 文件?还是根本不需要?
深入邮件列表存档,似乎文件对象是由构造函数直接关闭的,因此您不需要显式关闭它。
open_workbook 在返回之前调用 release_resources (关闭 mmaped 文件)。