有没有办法使用 xlrd 关闭工作簿
我正在使用函数 open_workbook() 打开 Excel 文件。但我在 xlrd 模块中找不到任何稍后关闭文件的函数。有没有办法使用 xlrd 关闭 xls 文件? 或者根本不需要?
I am using the function open_workbook() to open an excel file. But I cannot find any function to close the file later in the xlrd module. Is there a way to close the xls file using xlrd?
Or is not required at all?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
深入研究邮件列表存档,看来文件对象是直接由构造函数关闭的,所以不需要显式关闭。
Digging into the mailing list archive, it seems that the file object is closed directly by the constructor, so you don't need to close it explicitly.
open_workbook 在返回之前调用release_resources(它关闭映射文件)。
The open_workbook calls the release_resources ( which closes the mmaped file ) before returning.